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§
type Source<'a>: Verifiable + Follow<'a>
type Error: From<InvalidFlatbuffer>
Required Methods§
fn read_flatbuffer<'buf>( fb: &<Self::Source<'buf> as Follow<'buf>>::Inner, ) -> Result<Self, Self::Error>
Provided Methods§
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.