pub struct DscdEdge {
pub edge_id: u64,
pub from: EventId,
pub to: EventId,
pub observer_id: u32,
pub trust_value: f64,
pub trust_at_creation: f64,
pub rewrite_rule_at_source: u32,
}Fields§
§edge_id: u64§from: EventId§to: EventId§observer_id: u32§trust_value: f64§trust_at_creation: f64§rewrite_rule_at_source: u32Trait 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