pub struct GraphSnapshotRow {
pub run_id: String,
pub tau_threshold: f64,
pub src: usize,
pub dst: usize,
pub src_trust: f64,
pub dst_trust: f64,
pub compatible: bool,
}Fields§
§run_id: String§tau_threshold: f64§src: usize§dst: usize§src_trust: f64§dst_trust: f64§compatible: boolTrait Implementations§
Source§impl Clone for GraphSnapshotRow
impl Clone for GraphSnapshotRow
Source§fn clone(&self) -> GraphSnapshotRow
fn clone(&self) -> GraphSnapshotRow
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 GraphSnapshotRow
impl RefUnwindSafe for GraphSnapshotRow
impl Send for GraphSnapshotRow
impl Sync for GraphSnapshotRow
impl Unpin for GraphSnapshotRow
impl UnsafeUnpin for GraphSnapshotRow
impl UnwindSafe for GraphSnapshotRow
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