pub struct FixedSizeList {
pub list_size: i32,
}Expand description
The table FixedSizeList in the namespace org.apache.arrow.flatbuf
Generated from these locations:
- Table
FixedSizeListin the fileSchema.fbs:113
Fields§
§list_size: i32Number of list items per value
Implementations§
Source§impl FixedSizeList
impl FixedSizeList
Sourcepub fn builder() -> FixedSizeListBuilder<()>
pub fn builder() -> FixedSizeListBuilder<()>
Creates a FixedSizeListBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_list_size: impl WriteAsDefault<i32, i32>, ) -> Offset<Self>
Trait Implementations§
Source§impl Clone for FixedSizeList
impl Clone for FixedSizeList
Source§fn clone(&self) -> FixedSizeList
fn clone(&self) -> FixedSizeList
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 FixedSizeList
impl Debug for FixedSizeList
Source§impl Default for FixedSizeList
impl Default for FixedSizeList
Source§impl<'de> Deserialize<'de> for FixedSizeList
impl<'de> Deserialize<'de> for FixedSizeList
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 FixedSizeList
impl Hash for FixedSizeList
Source§impl Ord for FixedSizeList
impl Ord for FixedSizeList
Source§fn cmp(&self, other: &FixedSizeList) -> Ordering
fn cmp(&self, other: &FixedSizeList) -> 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 FixedSizeList
impl PartialEq for FixedSizeList
Source§impl PartialOrd for FixedSizeList
impl PartialOrd for FixedSizeList
Source§impl Serialize for FixedSizeList
impl Serialize for FixedSizeList
Source§impl<'a> TryFrom<FixedSizeListRef<'a>> for FixedSizeList
impl<'a> TryFrom<FixedSizeListRef<'a>> for FixedSizeList
impl Eq for FixedSizeList
impl StructuralPartialEq for FixedSizeList
impl VectorWrite<Offset<FixedSizeList>> for FixedSizeList
§Safety
The planus compiler generates implementations that initialize
the bytes in write_values.
impl WriteAs<Offset<FixedSizeList>> for FixedSizeList
impl WriteAsOffset<FixedSizeList> for FixedSizeList
impl<T0: WriteAsDefault<i32, i32>> WriteAsOffset<FixedSizeList> for FixedSizeListBuilder<(T0,)>
impl WriteAsOptional<Offset<FixedSizeList>> for FixedSizeList
Auto Trait Implementations§
impl Freeze for FixedSizeList
impl RefUnwindSafe for FixedSizeList
impl Send for FixedSizeList
impl Sync for FixedSizeList
impl Unpin for FixedSizeList
impl UnwindSafe for FixedSizeList
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