pub struct LegacyGraphEdgeRecord {
pub source_id: String,
pub target_id: String,
pub legacy_type: u8,
pub weight: f32,
}Fields§
§source_id: String§target_id: String§legacy_type: u8§weight: f32Trait Implementations§
Source§impl Clone for LegacyGraphEdgeRecord
impl Clone for LegacyGraphEdgeRecord
Source§fn clone(&self) -> LegacyGraphEdgeRecord
fn clone(&self) -> LegacyGraphEdgeRecord
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 LegacyGraphEdgeRecord
impl Debug for LegacyGraphEdgeRecord
Source§impl PartialEq for LegacyGraphEdgeRecord
impl PartialEq for LegacyGraphEdgeRecord
Source§fn eq(&self, other: &LegacyGraphEdgeRecord) -> bool
fn eq(&self, other: &LegacyGraphEdgeRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LegacyGraphEdgeRecord
Auto Trait Implementations§
impl Freeze for LegacyGraphEdgeRecord
impl RefUnwindSafe for LegacyGraphEdgeRecord
impl Send for LegacyGraphEdgeRecord
impl Sync for LegacyGraphEdgeRecord
impl Unpin for LegacyGraphEdgeRecord
impl UnsafeUnpin for LegacyGraphEdgeRecord
impl UnwindSafe for LegacyGraphEdgeRecord
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