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