pub struct TUnionTypeEntry {
pub name_to_type_ptr: BTreeMap<String, TTypeEntryPtr>,
}
Fields§
§name_to_type_ptr: BTreeMap<String, TTypeEntryPtr>
Implementations§
Source§impl TUnionTypeEntry
impl TUnionTypeEntry
pub fn new(name_to_type_ptr: BTreeMap<String, TTypeEntryPtr>) -> TUnionTypeEntry
Trait Implementations§
Source§impl Clone for TUnionTypeEntry
impl Clone for TUnionTypeEntry
Source§fn clone(&self) -> TUnionTypeEntry
fn clone(&self) -> TUnionTypeEntry
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 TUnionTypeEntry
impl Debug for TUnionTypeEntry
Source§impl Hash for TUnionTypeEntry
impl Hash for TUnionTypeEntry
Source§impl Ord for TUnionTypeEntry
impl Ord for TUnionTypeEntry
Source§fn cmp(&self, other: &TUnionTypeEntry) -> Ordering
fn cmp(&self, other: &TUnionTypeEntry) -> 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 TUnionTypeEntry
impl PartialEq for TUnionTypeEntry
Source§impl PartialOrd for TUnionTypeEntry
impl PartialOrd for TUnionTypeEntry
Source§impl TSerializable for TUnionTypeEntry
impl TSerializable for TUnionTypeEntry
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TUnionTypeEntry>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TUnionTypeEntry
impl StructuralPartialEq for TUnionTypeEntry
Auto Trait Implementations§
impl Freeze for TUnionTypeEntry
impl RefUnwindSafe for TUnionTypeEntry
impl Send for TUnionTypeEntry
impl Sync for TUnionTypeEntry
impl Unpin for TUnionTypeEntry
impl UnwindSafe for TUnionTypeEntry
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