pub trait PartWireReadable: Sized {
    fn from_wire_part<const L: usize, const E: bool>(
        curs: &mut WireCursor<'_>
    ) -> Result<Self, WireError>; }

Required Methods

Implementations on Foreign Types

Implementors