pub struct LargeListView {}Expand description
Same as ListView, but with 64-bit offsets and sizes, allowing to represent extremely large data values.
Generated from these locations:
- Table
LargeListViewin the fileSchema.fbs:110
Implementations§
Source§impl LargeListView
impl LargeListView
Sourcepub fn builder() -> LargeListViewBuilder<()>
pub fn builder() -> LargeListViewBuilder<()>
Creates a LargeListViewBuilder for serializing an instance of this table.
pub fn create(builder: &mut Builder) -> Offset<Self>
Trait Implementations§
Source§impl Clone for LargeListView
impl Clone for LargeListView
Source§fn clone(&self) -> LargeListView
fn clone(&self) -> LargeListView
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LargeListView
impl Debug for LargeListView
Source§impl Default for LargeListView
impl Default for LargeListView
Source§impl<'de> Deserialize<'de> for LargeListView
impl<'de> Deserialize<'de> for LargeListView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for LargeListView
impl Hash for LargeListView
Source§impl Ord for LargeListView
impl Ord for LargeListView
Source§fn cmp(&self, other: &LargeListView) -> Ordering
fn cmp(&self, other: &LargeListView) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LargeListView
impl PartialEq for LargeListView
Source§impl PartialOrd for LargeListView
impl PartialOrd for LargeListView
Source§impl Serialize for LargeListView
impl Serialize for LargeListView
Source§impl<'a> TryFrom<LargeListViewRef<'a>> for LargeListView
impl<'a> TryFrom<LargeListViewRef<'a>> for LargeListView
impl Eq for LargeListView
impl StructuralPartialEq for LargeListView
impl VectorWrite<Offset<LargeListView>> for LargeListView
§Safety
The planus compiler generates implementations that initialize
the bytes in write_values.
impl WriteAs<Offset<LargeListView>> for LargeListView
impl WriteAsOffset<LargeListView> for LargeListView
impl WriteAsOffset<LargeListView> for LargeListViewBuilder<()>
impl WriteAsOptional<Offset<LargeListView>> for LargeListView
Auto Trait Implementations§
impl Freeze for LargeListView
impl RefUnwindSafe for LargeListView
impl Send for LargeListView
impl Sync for LargeListView
impl Unpin for LargeListView
impl UnwindSafe for LargeListView
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more