pub struct RelationshipPattern {
pub variable: Option<String>,
pub types: Vec<String>,
pub direction: RelationshipDirection,
pub properties: Option<PropertyMap>,
pub variable_length: Option<VariableLength>,
}Fields§
§variable: Option<String>§types: Vec<String>§direction: RelationshipDirection§properties: Option<PropertyMap>§variable_length: Option<VariableLength>Trait Implementations§
Source§impl Clone for RelationshipPattern
impl Clone for RelationshipPattern
Source§fn clone(&self) -> RelationshipPattern
fn clone(&self) -> RelationshipPattern
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 RelationshipPattern
impl Debug for RelationshipPattern
Source§impl<'de> Deserialize<'de> for RelationshipPattern
impl<'de> Deserialize<'de> for RelationshipPattern
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 RelationshipPattern
impl PartialEq for RelationshipPattern
Source§fn eq(&self, other: &RelationshipPattern) -> bool
fn eq(&self, other: &RelationshipPattern) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RelationshipPattern
impl Serialize for RelationshipPattern
impl StructuralPartialEq for RelationshipPattern
Auto Trait Implementations§
impl Freeze for RelationshipPattern
impl RefUnwindSafe for RelationshipPattern
impl Send for RelationshipPattern
impl Sync for RelationshipPattern
impl Unpin for RelationshipPattern
impl UnsafeUnpin for RelationshipPattern
impl UnwindSafe for RelationshipPattern
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