pub enum ReferenceDirection {
Forward,
Inverse,
}Expand description
Direction of a reference in the address space.
Variants§
Forward
Reference from the source node to the target.
Inverse
Reference from the target node to the source.
Trait Implementations§
Source§impl Clone for ReferenceDirection
impl Clone for ReferenceDirection
Source§fn clone(&self) -> ReferenceDirection
fn clone(&self) -> ReferenceDirection
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 ReferenceDirection
impl Debug for ReferenceDirection
Source§impl Hash for ReferenceDirection
impl Hash for ReferenceDirection
Source§impl PartialEq for ReferenceDirection
impl PartialEq for ReferenceDirection
impl Copy for ReferenceDirection
impl Eq for ReferenceDirection
impl StructuralPartialEq for ReferenceDirection
Auto Trait Implementations§
impl Freeze for ReferenceDirection
impl RefUnwindSafe for ReferenceDirection
impl Send for ReferenceDirection
impl Sync for ReferenceDirection
impl Unpin for ReferenceDirection
impl UnsafeUnpin for ReferenceDirection
impl UnwindSafe for ReferenceDirection
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> 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.