You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fable: Use references instead of pointers for Conf::try_from*
This is recommended by clang-tidy as a less error prone approach.
BREAKING CHANGE:
If you use `Conf::try_from` or `Conf::try_from_pointer`, you need
to update your call from passing a pointer to passing a value.
That means you may need to use one of these transformations:
conf.try_from(key, value) -> conf.try_from(key, *value)
conf.try_from(key, &value) -> conf.try_from(key, value)
0 commit comments