pub struct HydratedRelationship {
pub id: i64,
pub start_id: i64,
pub end_id: i64,
pub rel_type: String,
pub properties: BTreeMap<String, LoraValue>,
}Fields§
§id: i64§start_id: i64§end_id: i64§rel_type: String§properties: BTreeMap<String, LoraValue>Trait Implementations§
Source§impl Clone for HydratedRelationship
impl Clone for HydratedRelationship
Source§fn clone(&self) -> HydratedRelationship
fn clone(&self) -> HydratedRelationship
Returns a duplicate 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 HydratedRelationship
impl Debug for HydratedRelationship
Source§impl PartialEq for HydratedRelationship
impl PartialEq for HydratedRelationship
Source§impl Serialize for HydratedRelationship
impl Serialize for HydratedRelationship
impl StructuralPartialEq for HydratedRelationship
Auto Trait Implementations§
impl Freeze for HydratedRelationship
impl RefUnwindSafe for HydratedRelationship
impl Send for HydratedRelationship
impl Sync for HydratedRelationship
impl Unpin for HydratedRelationship
impl UnsafeUnpin for HydratedRelationship
impl UnwindSafe for HydratedRelationship
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