pub enum QuadbinArrowType {
QuadbinU64(QuadbinType),
}Variants§
QuadbinU64(QuadbinType)
Implementations§
Source§impl QuadbinArrowType
impl QuadbinArrowType
pub fn to_data_type(&self) -> DataType
pub fn to_field<N: Into<String>>(&self, name: N, nullable: bool) -> Field
Sourcepub fn with_metadata(self, meta: Arc<Metadata>) -> QuadbinArrowType
pub fn with_metadata(self, meta: Arc<Metadata>) -> QuadbinArrowType
Applies the provided Metadata onto self.
pub fn from_extension_field(field: &Field) -> QuadbinArrowResult<Self>
pub fn from_arrow_field(field: &Field) -> QuadbinArrowResult<Self>
Trait Implementations§
Source§impl Clone for QuadbinArrowType
impl Clone for QuadbinArrowType
Source§fn clone(&self) -> QuadbinArrowType
fn clone(&self) -> QuadbinArrowType
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 moreSource§impl Debug for QuadbinArrowType
impl Debug for QuadbinArrowType
impl Eq for QuadbinArrowType
Source§impl From<QuadbinArrowType> for DataType
impl From<QuadbinArrowType> for DataType
Source§fn from(value: QuadbinArrowType) -> Self
fn from(value: QuadbinArrowType) -> Self
Converts to this type from the input type.
Source§impl Hash for QuadbinArrowType
impl Hash for QuadbinArrowType
Source§impl PartialEq for QuadbinArrowType
impl PartialEq for QuadbinArrowType
impl StructuralPartialEq for QuadbinArrowType
Source§impl TryFrom<&Field> for QuadbinArrowType
impl TryFrom<&Field> for QuadbinArrowType
Source§type Error = QuadbinArrowError
type Error = QuadbinArrowError
The type returned in the event of a conversion error.
Source§fn try_from(field: &Field) -> QuadbinArrowResult<Self>
fn try_from(field: &Field) -> QuadbinArrowResult<Self>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for QuadbinArrowType
impl RefUnwindSafe for QuadbinArrowType
impl Send for QuadbinArrowType
impl Sync for QuadbinArrowType
impl Unpin for QuadbinArrowType
impl UnsafeUnpin for QuadbinArrowType
impl UnwindSafe for QuadbinArrowType
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