Struct datafusion::common::arrow::ipc::gen::Message::MessageHeader
source · #[repr(transparent)]pub struct MessageHeader(pub u8);
Expand description
The root Message type This union enables us to easily send different message types without redundant storage, and in the future we can easily add new message types.
Arrow implementations do not need to implement all of the message types, which may include experimental metadata types. For maximum compatibility, it is best to send data using RecordBatch
Tuple Fields§
§0: u8
Implementations§
source§impl MessageHeader
impl MessageHeader
pub const NONE: MessageHeader = _
pub const Schema: MessageHeader = _
pub const DictionaryBatch: MessageHeader = _
pub const RecordBatch: MessageHeader = _
pub const Tensor: MessageHeader = _
pub const SparseTensor: MessageHeader = _
pub const ENUM_MIN: u8 = 0u8
pub const ENUM_MAX: u8 = 5u8
pub const ENUM_VALUES: &'static [MessageHeader] = _
sourcepub fn variant_name(self) -> Option<&'static str>
pub fn variant_name(self) -> Option<&'static str>
Returns the variant’s name or “” if unknown.
Trait Implementations§
source§impl Clone for MessageHeader
impl Clone for MessageHeader
source§fn clone(&self) -> MessageHeader
fn clone(&self) -> MessageHeader
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 MessageHeader
impl Debug for MessageHeader
source§impl Default for MessageHeader
impl Default for MessageHeader
source§fn default() -> MessageHeader
fn default() -> MessageHeader
Returns the “default value” for a type. Read more
source§impl EndianScalar for MessageHeader
impl EndianScalar for MessageHeader
type Scalar = u8
fn to_little_endian(self) -> u8
fn from_little_endian(v: u8) -> MessageHeader
source§impl<'a> Follow<'a> for MessageHeader
impl<'a> Follow<'a> for MessageHeader
source§impl Hash for MessageHeader
impl Hash for MessageHeader
source§impl Ord for MessageHeader
impl Ord for MessageHeader
source§fn cmp(&self, other: &MessageHeader) -> Ordering
fn cmp(&self, other: &MessageHeader) -> 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 MessageHeader
impl PartialEq for MessageHeader
source§impl PartialOrd for MessageHeader
impl PartialOrd for MessageHeader
source§impl Push for MessageHeader
impl Push for MessageHeader
source§impl<'a> Verifiable for MessageHeader
impl<'a> Verifiable for MessageHeader
source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize,
) -> Result<(), InvalidFlatbuffer>
fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize, ) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos
in the verifier’s buffer.
Should not need to be called directly.impl Copy for MessageHeader
impl Eq for MessageHeader
impl SimpleToVerifyInSlice for MessageHeader
impl StructuralPartialEq for MessageHeader
Auto Trait Implementations§
impl Freeze for MessageHeader
impl RefUnwindSafe for MessageHeader
impl Send for MessageHeader
impl Sync for MessageHeader
impl Unpin for MessageHeader
impl UnwindSafe for MessageHeader
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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§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