vortex_flatbuffers

Trait ReadFlatBuffer

Source
pub trait ReadFlatBuffer: Sized {
    type Source<'a>: Verifiable + Follow<'a>;
    type Error: From<InvalidFlatbuffer>;

    // Required method
    fn read_flatbuffer<'buf>(
        fb: &<Self::Source<'buf> as Follow<'buf>>::Inner,
    ) -> Result<Self, Self::Error>;

    // Provided method
    fn read_flatbuffer_bytes<'buf>(
        bytes: &'buf [u8],
    ) -> Result<Self, Self::Error>
       where <Self as ReadFlatBuffer>::Source<'buf>: 'buf { ... }
}

Required Associated Types§

Required Methods§

Source

fn read_flatbuffer<'buf>( fb: &<Self::Source<'buf> as Follow<'buf>>::Inner, ) -> Result<Self, Self::Error>

Provided Methods§

Source

fn read_flatbuffer_bytes<'buf>(bytes: &'buf [u8]) -> Result<Self, Self::Error>
where <Self as ReadFlatBuffer>::Source<'buf>: 'buf,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§