pub struct AlgorithmField {
pub name: &'static str,
pub data_type: AlgorithmFieldType,
pub nullable: bool,
}Expand description
Required field in a stable logical result schema.
Fields§
§name: &'static strStable public column name.
data_type: AlgorithmFieldTypeLogical Arrow type.
nullable: boolWhether the field accepts nulls.
Trait Implementations§
Source§impl Clone for AlgorithmField
impl Clone for AlgorithmField
Source§fn clone(&self) -> AlgorithmField
fn clone(&self) -> AlgorithmField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AlgorithmField
Source§impl Debug for AlgorithmField
impl Debug for AlgorithmField
impl Eq for AlgorithmField
Source§impl Hash for AlgorithmField
impl Hash for AlgorithmField
Source§impl PartialEq for AlgorithmField
impl PartialEq for AlgorithmField
impl StructuralPartialEq for AlgorithmField
Auto Trait Implementations§
impl Freeze for AlgorithmField
impl RefUnwindSafe for AlgorithmField
impl Send for AlgorithmField
impl Sync for AlgorithmField
impl Unpin for AlgorithmField
impl UnsafeUnpin for AlgorithmField
impl UnwindSafe for AlgorithmField
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> Equivalent<K> for Q
impl<Q, K> Equivalent<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.