pub trait VectoredReadable: Sized {
    fn from_vectored<const E: bool>(
        curs: &mut VectoredCursor<'_>
    ) -> Result<Self, WireError>; }

Required Methods

Implementations on Foreign Types

Implementors