Struct neo4rs::BoltRelation 
source · pub struct BoltRelation {
    pub id: BoltInteger,
    pub start_node_id: BoltInteger,
    pub end_node_id: BoltInteger,
    pub typ: BoltString,
    pub properties: BoltMap,
}Fields§
§id: BoltInteger§start_node_id: BoltInteger§end_node_id: BoltInteger§typ: BoltString§properties: BoltMapImplementations§
source§impl BoltRelation
 
impl BoltRelation
Trait Implementations§
source§impl Clone for BoltRelation
 
impl Clone for BoltRelation
source§fn clone(&self) -> BoltRelation
 
fn clone(&self) -> BoltRelation
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 Debug for BoltRelation
 
impl Debug for BoltRelation
source§impl<'de> Deserialize<'de> for BoltRelation
 
impl<'de> Deserialize<'de> for BoltRelation
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 From<BoltRelation> for BoltType
 
impl From<BoltRelation> for BoltType
source§fn from(value: BoltRelation) -> Self
 
fn from(value: BoltRelation) -> Self
Converts to this type from the input type.
source§impl<'de> IntoDeserializer<'de, DeError> for &'de BoltRelation
 
impl<'de> IntoDeserializer<'de, DeError> for &'de BoltRelation
§type Deserializer = BoltRelationDeserializer<'de>
 
type Deserializer = BoltRelationDeserializer<'de>
The type of the deserializer being converted into.
source§fn into_deserializer(self) -> Self::Deserializer
 
fn into_deserializer(self) -> Self::Deserializer
Convert this value into a deserializer.
source§impl PartialEq for BoltRelation
 
impl PartialEq for BoltRelation
source§fn eq(&self, other: &BoltRelation) -> bool
 
fn eq(&self, other: &BoltRelation) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BoltRelation
Auto Trait Implementations§
impl RefUnwindSafe for BoltRelation
impl Send for BoltRelation
impl Sync for BoltRelation
impl Unpin for BoltRelation
impl UnwindSafe for BoltRelation
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