Struct 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
sourceimpl MessageHeader
impl MessageHeader
pub const NONE: Self = _
pub const Schema: Self = _
pub const DictionaryBatch: Self = _
pub const RecordBatch: Self = _
pub const Tensor: Self = _
pub const SparseTensor: Self = _
pub const ENUM_MIN: u8 = 0u8
pub const ENUM_MAX: u8 = 5u8
pub const ENUM_VALUES: &'static [Self] = _
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
sourceimpl Clone for MessageHeader
impl Clone for MessageHeader
sourcefn clone(&self) -> MessageHeader
fn clone(&self) -> MessageHeader
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MessageHeader
impl Debug for MessageHeader
sourceimpl Default for MessageHeader
impl Default for MessageHeader
sourcefn default() -> MessageHeader
fn default() -> MessageHeader
Returns the “default value” for a type. Read more
sourceimpl EndianScalar for MessageHeader
impl EndianScalar for MessageHeader
sourceimpl<'a> Follow<'a> for MessageHeader
impl<'a> Follow<'a> for MessageHeader
sourceimpl Hash for MessageHeader
impl Hash for MessageHeader
sourceimpl Ord for MessageHeader
impl Ord for MessageHeader
sourcefn cmp(&self, other: &MessageHeader) -> Ordering
fn cmp(&self, other: &MessageHeader) -> Ordering
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<MessageHeader> for MessageHeader
impl PartialEq<MessageHeader> for MessageHeader
sourcefn eq(&self, other: &MessageHeader) -> bool
fn eq(&self, other: &MessageHeader) -> bool
sourceimpl PartialOrd<MessageHeader> for MessageHeader
impl PartialOrd<MessageHeader> for MessageHeader
sourcefn partial_cmp(&self, other: &MessageHeader) -> Option<Ordering>
fn partial_cmp(&self, other: &MessageHeader) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresourceimpl Push for MessageHeader
impl Push for MessageHeader
sourceimpl<'a> Verifiable for MessageHeader
impl<'a> Verifiable for MessageHeader
sourcefn 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. Read moreimpl Copy for MessageHeader
impl Eq for MessageHeader
impl SimpleToVerifyInSlice for MessageHeader
impl StructuralEq for MessageHeader
impl StructuralPartialEq for MessageHeader
Auto Trait Implementations
impl RefUnwindSafe for MessageHeader
impl Send for MessageHeader
impl Sync for MessageHeader
impl Unpin for MessageHeader
impl UnwindSafe for MessageHeader
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more