[][src]Trait fbs::FollowBuf

pub trait FollowBuf {
    type Buf: AsRef<[u8]>;
    type Inner;
    fn follow_buf(buf: Self::Buf, loc: usize) -> Result<Self::Inner, Error>;
}

Associated Types

type Buf: AsRef<[u8]>

type Inner

Loading content...

Required methods

fn follow_buf(buf: Self::Buf, loc: usize) -> Result<Self::Inner, Error>

Loading content...

Implementors

impl<'a, T> FollowBuf for ForwardsUOffset<T> where
    T: FollowBuf,
    <T as FollowBuf>::Buf: AsRef<[u8]>, 
[src]

type Inner = T::Inner

type Buf = <T as FollowBuf>::Buf

impl<'a, T> FollowBuf for SkipSizePrefix<T> where
    T: FollowBuf,
    <T as FollowBuf>::Buf: AsRef<[u8]>, 
[src]

type Inner = T::Inner

type Buf = <T as FollowBuf>::Buf

impl<B> FollowBuf for Table<B> where
    B: AsRef<[u8]>, 
[src]

type Buf = B

type Inner = Table<B>

Loading content...