pub struct Int {
pub bit_width: i32,
pub is_signed: bool,
}Expand description
The table Int in the namespace org.apache.arrow.flatbuf
Generated from these locations:
- Table
Intin the fileSchema.fbs:159
Fields§
§bit_width: i32The field bitWidth in the table Int
is_signed: boolThe field is_signed in the table Int
Implementations§
Source§impl Int
impl Int
Sourcepub fn builder() -> IntBuilder<()>
pub fn builder() -> IntBuilder<()>
Creates a IntBuilder for serializing an instance of this table.
pub fn create( builder: &mut Builder, field_bit_width: impl WriteAsDefault<i32, i32>, field_is_signed: impl WriteAsDefault<bool, bool>, ) -> Offset<Self>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Int
impl<'de> Deserialize<'de> for Int
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 Ord for Int
impl Ord for Int
Source§impl PartialOrd for Int
impl PartialOrd for Int
impl Eq for Int
impl StructuralPartialEq for Int
impl VectorWrite<Offset<Int>> for Int
§Safety
The planus compiler generates implementations that initialize
the bytes in write_values.
impl WriteAs<Offset<Int>> for Int
impl WriteAsOffset<Int> for Int
impl<T0: WriteAsDefault<i32, i32>, T1: WriteAsDefault<bool, bool>> WriteAsOffset<Int> for IntBuilder<(T0, T1)>
impl WriteAsOptional<Offset<Int>> for Int
Auto Trait Implementations§
impl Freeze for Int
impl RefUnwindSafe for Int
impl Send for Int
impl Sync for Int
impl Unpin for Int
impl UnwindSafe for Int
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