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