pub enum BackendDirection {
Outgoing,
Incoming,
}Expand description
Direction specification for graph traversal operations.
Variants§
Trait Implementations§
Source§impl Clone for BackendDirection
impl Clone for BackendDirection
Source§fn clone(&self) -> BackendDirection
fn clone(&self) -> BackendDirection
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 BackendDirection
impl Debug for BackendDirection
Source§impl<'de> Deserialize<'de> for BackendDirection
impl<'de> Deserialize<'de> for BackendDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BackendDirection
impl PartialEq for BackendDirection
Source§impl Serialize for BackendDirection
impl Serialize for BackendDirection
impl Copy for BackendDirection
impl Eq for BackendDirection
impl StructuralPartialEq for BackendDirection
Auto Trait Implementations§
impl Freeze for BackendDirection
impl RefUnwindSafe for BackendDirection
impl Send for BackendDirection
impl Sync for BackendDirection
impl Unpin for BackendDirection
impl UnwindSafe for BackendDirection
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