pub struct DecodedEdgeValue {
pub edge_type: String,
pub from_id: RecordId,
pub to_id: RecordId,
pub properties: HashMap<String, SochValue>,
}Expand description
Edge value decoded components.
Fields§
§edge_type: String§from_id: RecordId§to_id: RecordId§properties: HashMap<String, SochValue>Trait Implementations§
Source§impl Clone for DecodedEdgeValue
impl Clone for DecodedEdgeValue
Source§fn clone(&self) -> DecodedEdgeValue
fn clone(&self) -> DecodedEdgeValue
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 moreAuto Trait Implementations§
impl Freeze for DecodedEdgeValue
impl RefUnwindSafe for DecodedEdgeValue
impl Send for DecodedEdgeValue
impl Sync for DecodedEdgeValue
impl Unpin for DecodedEdgeValue
impl UnsafeUnpin for DecodedEdgeValue
impl UnwindSafe for DecodedEdgeValue
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