pub trait Resolvable { }
Expand description
Resolvable
is a marker trait, mainly to make resolution opt-in and to avoid
polluting every type with a resolve method.
You might want to use resolvable_with_identity_impl
or resolvable_with_try_into_impls
to implement this trait and a reflexive or blanket impl.