pub trait CompWireReadable<'a>: Sized {
    fn from_wire_comp<const E: bool>(
        curs: &mut WireCursor<'a>
    ) -> Result<Self, WireError>; }

Required Methods

Implementors