pub enum ListType<'a> {
Regular(&'a ListArray),
Large(&'a LargeListArray),
}Expand description
Wrapper type for different list sizes
Variants§
Regular(&'a ListArray)
The underlying list is a ListArray
Large(&'a LargeListArray)
The underlying list is a LargeListArray
Trait Implementations§
impl<'a> Copy for ListType<'a>
impl<'a> StructuralPartialEq for ListType<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListType<'a>
impl<'a> !RefUnwindSafe for ListType<'a>
impl<'a> Send for ListType<'a>
impl<'a> Sync for ListType<'a>
impl<'a> Unpin for ListType<'a>
impl<'a> !UnwindSafe for ListType<'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