pub struct GraphConditions {
pub target: Option<TargetCondition>,
pub relationship: Option<RelationshipCondition>,
pub path_exists: Option<PathCondition>,
}Fields§
§target: Option<TargetCondition>§relationship: Option<RelationshipCondition>§path_exists: Option<PathCondition>Trait Implementations§
Source§impl Clone for GraphConditions
impl Clone for GraphConditions
Source§fn clone(&self) -> GraphConditions
fn clone(&self) -> GraphConditions
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 GraphConditions
impl Debug for GraphConditions
Source§impl Default for GraphConditions
impl Default for GraphConditions
Source§fn default() -> GraphConditions
fn default() -> GraphConditions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GraphConditions
impl<'de> Deserialize<'de> for GraphConditions
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
Auto Trait Implementations§
impl Freeze for GraphConditions
impl RefUnwindSafe for GraphConditions
impl Send for GraphConditions
impl Sync for GraphConditions
impl Unpin for GraphConditions
impl UnsafeUnpin for GraphConditions
impl UnwindSafe for GraphConditions
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