Struct parquet_format_safe::thrift::protocol::TFieldIdentifier
source · pub struct TFieldIdentifier {
pub name: Option<String>,
pub field_type: TType,
pub id: Option<i16>,
}
Expand description
Thrift field identifier.
Fields§
§name: Option<String>
Name of the Thrift field.
None
if it’s not sent over the wire.
field_type: TType
Field type.
This may be a primitive, container, or a struct.
id: Option<i16>
Thrift field id.
None
only if field_type
is TType::Stop
.
Implementations§
Trait Implementations§
source§impl Clone for TFieldIdentifier
impl Clone for TFieldIdentifier
source§fn clone(&self) -> TFieldIdentifier
fn clone(&self) -> TFieldIdentifier
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 TFieldIdentifier
impl Debug for TFieldIdentifier
source§impl PartialEq for TFieldIdentifier
impl PartialEq for TFieldIdentifier
source§fn eq(&self, other: &TFieldIdentifier) -> bool
fn eq(&self, other: &TFieldIdentifier) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for TFieldIdentifier
impl StructuralPartialEq for TFieldIdentifier
Auto Trait Implementations§
impl Freeze for TFieldIdentifier
impl RefUnwindSafe for TFieldIdentifier
impl Send for TFieldIdentifier
impl Sync for TFieldIdentifier
impl Unpin for TFieldIdentifier
impl UnwindSafe for TFieldIdentifier
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