Struct 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 more