pub struct DscdEdge {
pub edge_id: u64,
pub src: u64,
pub dst: u64,
pub module_id: u32,
pub rewrite_rule_id: Option<String>,
pub base_trust: f64,
pub effective_trust: f64,
pub trust_at_creation: f64,
pub temporal_lag: usize,
pub structural_distance: f64,
pub structural_level_source: f64,
pub structural_level_target: f64,
}Expand description
DSCD directed edge candidate with locality + trust-decay provenance.
Fields§
§edge_id: u64§src: u64§dst: u64§module_id: u32§rewrite_rule_id: Option<String>§base_trust: f64§effective_trust: f64§trust_at_creation: f64§temporal_lag: usize§structural_distance: f64§structural_level_source: f64§structural_level_target: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for DscdEdge
impl RefUnwindSafe for DscdEdge
impl Send for DscdEdge
impl Sync for DscdEdge
impl Unpin for DscdEdge
impl UnsafeUnpin for DscdEdge
impl UnwindSafe for DscdEdge
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more