Struct neo4rs::Relationships 
source · pub struct Relationships<T>(pub Vec<T>);Expand description
Newtype to extract the relationships of a path during deserialization.
Tuple Fields§
§0: Vec<T>Trait Implementations§
source§impl<T: Clone> Clone for Relationships<T>
 
impl<T: Clone> Clone for Relationships<T>
source§fn clone(&self) -> Relationships<T>
 
fn clone(&self) -> Relationships<T>
Returns a copy 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<T: Debug> Debug for Relationships<T>
 
impl<T: Debug> Debug for Relationships<T>
source§impl<'de, T: Deserialize<'de>> Deserialize<'de> for Relationships<T>
 
impl<'de, T: Deserialize<'de>> Deserialize<'de> for Relationships<T>
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<T: PartialEq> PartialEq for Relationships<T>
 
impl<T: PartialEq> PartialEq for Relationships<T>
source§fn eq(&self, other: &Relationships<T>) -> bool
 
fn eq(&self, other: &Relationships<T>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl<T: Eq> Eq for Relationships<T>
impl<T> StructuralPartialEq for Relationships<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Relationships<T>where
    T: RefUnwindSafe,
impl<T> Send for Relationships<T>where
    T: Send,
impl<T> Sync for Relationships<T>where
    T: Sync,
impl<T> Unpin for Relationships<T>where
    T: Unpin,
impl<T> UnwindSafe for Relationships<T>where
    T: UnwindSafe,
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