pub struct ListView<'a> {
pub _tab: Table<'a>,
}
Expand description
Represents the same logical types that List can, but contains offsets and sizes allowing for writes in any order and sharing of child values among list values.
Fields§
§_tab: Table<'a>
Implementations§
Source§impl<'a> ListView<'a>
impl<'a> ListView<'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 ListViewArgs, ) -> WIPOffset<ListView<'bldr>>
Trait Implementations§
impl<'a> Copy for ListView<'a>
impl<'a> StructuralPartialEq for ListView<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListView<'a>
impl<'a> RefUnwindSafe for ListView<'a>
impl<'a> Send for ListView<'a>
impl<'a> Sync for ListView<'a>
impl<'a> Unpin for ListView<'a>
impl<'a> UnwindSafe for ListView<'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