pub struct GraphEdgeRecord {
pub source_id: String,
pub target_id: String,
pub label_id: u32,
pub weight: f32,
}Fields§
§source_id: String§target_id: String§label_id: u32§weight: f32Trait Implementations§
Source§impl Clone for GraphEdgeRecord
impl Clone for GraphEdgeRecord
Source§fn clone(&self) -> GraphEdgeRecord
fn clone(&self) -> GraphEdgeRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphEdgeRecord
impl Debug for GraphEdgeRecord
Source§impl PartialEq for GraphEdgeRecord
impl PartialEq for GraphEdgeRecord
Source§fn eq(&self, other: &GraphEdgeRecord) -> bool
fn eq(&self, other: &GraphEdgeRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphEdgeRecord
Auto Trait Implementations§
impl Freeze for GraphEdgeRecord
impl RefUnwindSafe for GraphEdgeRecord
impl Send for GraphEdgeRecord
impl Sync for GraphEdgeRecord
impl Unpin for GraphEdgeRecord
impl UnsafeUnpin for GraphEdgeRecord
impl UnwindSafe for GraphEdgeRecord
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