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