pub enum TreeRefId {
Root,
Node(usize),
}Variants§
Trait Implementations§
Source§impl AddAssign for TreeRefId
impl AddAssign for TreeRefId
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl AddAssign<usize> for TreeRefId
impl AddAssign<usize> for TreeRefId
Source§fn add_assign(&mut self, rhs: usize)
fn add_assign(&mut self, rhs: usize)
Performs the
+= operation. Read moreimpl Copy for TreeRefId
impl Eq for TreeRefId
Source§impl Ord for TreeRefId
impl Ord for TreeRefId
1.21.0 (const: unstable) · 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 PartialOrd for TreeRefId
impl PartialOrd for TreeRefId
impl StructuralPartialEq for TreeRefId
Auto Trait Implementations§
impl Freeze for TreeRefId
impl RefUnwindSafe for TreeRefId
impl Send for TreeRefId
impl Sync for TreeRefId
impl Unpin for TreeRefId
impl UnsafeUnpin for TreeRefId
impl UnwindSafe for TreeRefId
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,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.