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, A: Allocator + 'bldr>( _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr, A>, _args: &'args LargeListArgs, ) -> WIPOffset<LargeList<'bldr>>
Trait Implementations§
impl<'a> Copy for LargeList<'a>
impl<'a> StructuralPartialEq for LargeList<'a>
Auto Trait Implementations§
impl<'a> Freeze for LargeList<'a>
impl<'a> RefUnwindSafe for LargeList<'a>
impl<'a> Send for LargeList<'a>
impl<'a> Sync for LargeList<'a>
impl<'a> Unpin for LargeList<'a>
impl<'a> UnwindSafe for LargeList<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more