Struct google_cloud_bigquery::storage::ipc::MessageHeader
#[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: u8Implementations§
§impl MessageHeader
impl MessageHeader
pub const NONE: MessageHeader = Self(0)
pub const Schema: MessageHeader = Self(1)
pub const DictionaryBatch: MessageHeader = Self(2)
pub const RecordBatch: MessageHeader = Self(3)
pub const Tensor: MessageHeader = Self(4)
pub const SparseTensor: MessageHeader = Self(5)
pub const ENUM_MIN: u8 = 0u8
pub const ENUM_MAX: u8 = 5u8
pub const ENUM_VALUES: &'static [MessageHeader] = &[Self::NONE, Self::Schema, Self::DictionaryBatch, Self::RecordBatch, Self::Tensor, Self::SparseTensor]
pub 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§
§impl Clone for MessageHeader
impl Clone for MessageHeader
§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 more§impl Debug for MessageHeader
impl Debug for MessageHeader
§impl Default for MessageHeader
impl Default for MessageHeader
§fn default() -> MessageHeader
fn default() -> MessageHeader
Returns the “default value” for a type. Read more
§impl EndianScalar for MessageHeader
impl EndianScalar for MessageHeader
§impl<'a> Follow<'a> for MessageHeader
impl<'a> Follow<'a> for MessageHeader
type Inner = MessageHeader
§impl Hash for MessageHeader
impl Hash for MessageHeader
§impl Ord for MessageHeader
impl Ord for MessageHeader
§impl PartialEq<MessageHeader> for MessageHeader
impl PartialEq<MessageHeader> for MessageHeader
§fn eq(&self, other: &MessageHeader) -> bool
fn eq(&self, other: &MessageHeader) -> bool
This method tests for
self and other values to be equal, and is used
by ==.§impl PartialOrd<MessageHeader> for MessageHeader
impl PartialOrd<MessageHeader> for MessageHeader
§fn partial_cmp(&self, other: &MessageHeader) -> Option<Ordering>
fn partial_cmp(&self, other: &MessageHeader) -> Option<Ordering>
1.0.0 · source§fn 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 more§impl Push for MessageHeader
impl Push for MessageHeader
§impl<'a> Verifiable for MessageHeader
impl<'a> Verifiable for MessageHeader
§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 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§
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<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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request