Trait sp_core::crypto::IsWrappedBy
source · pub trait IsWrappedBy<Outer>: From<Outer> + Into<Outer> {
// Required methods
fn from_ref(outer: &Outer) -> &Self;
fn from_mut(outer: &mut Outer) -> &mut Self;
}
Expand description
One type is wrapped by another.
Required Methods§
sourcefn from_mut(outer: &mut Outer) -> &mut Self
fn from_mut(outer: &mut Outer) -> &mut Self
Get a mutable reference to the inner from the outer.
Object Safety§
This trait is not object safe.