enum UnionBranchKey {
Named(String),
Primitive(PrimitiveType),
Array,
Map,
}
Variants§
Trait Implementations§
Source§impl Clone for UnionBranchKey
impl Clone for UnionBranchKey
Source§fn clone(&self) -> UnionBranchKey
fn clone(&self) -> UnionBranchKey
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 UnionBranchKey
impl Debug for UnionBranchKey
Source§impl Hash for UnionBranchKey
impl Hash for UnionBranchKey
Source§impl PartialEq for UnionBranchKey
impl PartialEq for UnionBranchKey
impl Eq for UnionBranchKey
impl StructuralPartialEq for UnionBranchKey
Auto Trait Implementations§
impl Freeze for UnionBranchKey
impl RefUnwindSafe for UnionBranchKey
impl Send for UnionBranchKey
impl Sync for UnionBranchKey
impl Unpin for UnionBranchKey
impl UnwindSafe for UnionBranchKey
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.