pub enum TTypeEntry {
PrimitiveEntry(TPrimitiveTypeEntry),
ArrayEntry(TArrayTypeEntry),
MapEntry(TMapTypeEntry),
StructEntry(TStructTypeEntry),
UnionEntry(TUnionTypeEntry),
UserDefinedTypeEntry(TUserDefinedTypeEntry),
}
Variants§
PrimitiveEntry(TPrimitiveTypeEntry)
ArrayEntry(TArrayTypeEntry)
MapEntry(TMapTypeEntry)
StructEntry(TStructTypeEntry)
UnionEntry(TUnionTypeEntry)
UserDefinedTypeEntry(TUserDefinedTypeEntry)
Trait Implementations§
Source§impl Clone for TTypeEntry
impl Clone for TTypeEntry
Source§fn clone(&self) -> TTypeEntry
fn clone(&self) -> TTypeEntry
Returns a duplicate 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 TTypeEntry
impl Debug for TTypeEntry
Source§impl Hash for TTypeEntry
impl Hash for TTypeEntry
Source§impl Ord for TTypeEntry
impl Ord for TTypeEntry
Source§fn cmp(&self, other: &TTypeEntry) -> Ordering
fn cmp(&self, other: &TTypeEntry) -> 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 TTypeEntry
impl PartialEq for TTypeEntry
Source§impl PartialOrd for TTypeEntry
impl PartialOrd for TTypeEntry
Source§impl TSerializable for TTypeEntry
impl TSerializable for TTypeEntry
fn read_from_in_protocol(i_prot: &mut dyn TInputProtocol) -> Result<TTypeEntry>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TTypeEntry
impl StructuralPartialEq for TTypeEntry
Auto Trait Implementations§
impl Freeze for TTypeEntry
impl RefUnwindSafe for TTypeEntry
impl Send for TTypeEntry
impl Sync for TTypeEntry
impl Unpin for TTypeEntry
impl UnwindSafe for TTypeEntry
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