logo
pub trait ReadFrom<'a> {
    type ReadType: ReadUnchecked<'a>;

    fn from(value: <Self::ReadType as ReadUnchecked<'a>>::HostType) -> Self;
}

Required Associated Types

Required Methods

Implementors