pub enum BindingSource {
Root,
Follow {
from: u32,
field: String,
direction: EdgeDirection,
required: bool,
},
}Variants§
Trait Implementations§
Source§impl Clone for BindingSource
impl Clone for BindingSource
Source§fn clone(&self) -> BindingSource
fn clone(&self) -> BindingSource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BindingSource
impl Debug for BindingSource
Source§impl<'de> Deserialize<'de> for BindingSource
impl<'de> Deserialize<'de> for BindingSource
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
impl Eq for BindingSource
Source§impl PartialEq for BindingSource
impl PartialEq for BindingSource
Source§impl Serialize for BindingSource
impl Serialize for BindingSource
impl StructuralPartialEq for BindingSource
Auto Trait Implementations§
impl Freeze for BindingSource
impl RefUnwindSafe for BindingSource
impl Send for BindingSource
impl Sync for BindingSource
impl Unpin for BindingSource
impl UnsafeUnpin for BindingSource
impl UnwindSafe for BindingSource
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