Trait wyz::comu::Referential
source · pub trait Referential<'a>: Sealed {
type Ref: 'a + Deref;
// Required methods
unsafe fn to_ref(self) -> Self::Ref;
fn from_ref(this: Self::Ref) -> Self;
}
Expand description
Allows an Address
to produce an ordinary reference.