pub enum MessageDataType {
Show 16 variants
Float64,
Float32,
UInt8,
UInt16,
UInt32,
UInt64,
UInt128,
Int8,
Int16,
Int32,
Int64,
Int128,
Bool,
String,
Binary,
NoData,
}Expand description
Primitive element type used by a message.
This is the underlying “slot” type, not the high-level DataType
(which is the logical schema type).
Variants§
Float64
Float32
UInt8
UInt16
UInt32
UInt64
UInt128
Int8
Int16
Int32
Int64
Int128
Bool
String
Binary
NoData
Trait Implementations§
Source§impl Clone for MessageDataType
impl Clone for MessageDataType
Source§fn clone(&self) -> MessageDataType
fn clone(&self) -> MessageDataType
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 MessageDataType
Source§impl Debug for MessageDataType
impl Debug for MessageDataType
impl Eq for MessageDataType
Source§impl Hash for MessageDataType
impl Hash for MessageDataType
Source§impl Ord for MessageDataType
impl Ord for MessageDataType
Source§fn cmp(&self, other: &MessageDataType) -> Ordering
fn cmp(&self, other: &MessageDataType) -> Ordering
1.21.0 (const: unstable) · 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 MessageDataType
impl PartialEq for MessageDataType
Source§fn eq(&self, other: &MessageDataType) -> bool
fn eq(&self, other: &MessageDataType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MessageDataType
impl PartialOrd for MessageDataType
impl StructuralPartialEq for MessageDataType
Auto Trait Implementations§
impl Freeze for MessageDataType
impl RefUnwindSafe for MessageDataType
impl Send for MessageDataType
impl Sync for MessageDataType
impl Unpin for MessageDataType
impl UnsafeUnpin for MessageDataType
impl UnwindSafe for MessageDataType
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