pub struct LargeList<'a> {
pub _tab: Table<'a>,
}
Expand description
Same as List, but with 64-bit offsets, allowing to represent extremely large data values.
Fields§
§_tab: Table<'a>
Implementations§
source§impl<'a> LargeList<'a>
impl<'a> LargeList<'a>
pub unsafe fn init_from_table(table: Table<'a>) -> Self
pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
_fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
_args: &'args LargeListArgs
) -> WIPOffset<LargeList<'bldr>>
Trait Implementations§
source§impl<'a> PartialEq<LargeList<'a>> for LargeList<'a>
impl<'a> PartialEq<LargeList<'a>> for LargeList<'a>
source§impl Verifiable for LargeList<'_>
impl Verifiable for LargeList<'_>
source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize
) -> Result<(), InvalidFlatbuffer>
fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize
) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos
in the verifier’s buffer.
Should not need to be called directly. Read more