pub struct PendingEdge {
pub source: NodeId,
pub target: NodeId,
pub weight: FiniteF32,
pub inhibitory: bool,
pub relation: InternedStr,
pub direction: EdgeDirection,
pub causal_strength: FiniteF32,
}Expand description
Raw edge data stored before CSR construction.
Fields§
§source: NodeId§target: NodeId§weight: FiniteF32§inhibitory: bool§relation: InternedStr§direction: EdgeDirection§causal_strength: FiniteF32Trait Implementations§
Source§impl Clone for PendingEdge
impl Clone for PendingEdge
Source§fn clone(&self) -> PendingEdge
fn clone(&self) -> PendingEdge
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 PendingEdge
impl RefUnwindSafe for PendingEdge
impl Send for PendingEdge
impl Sync for PendingEdge
impl Unpin for PendingEdge
impl UnsafeUnpin for PendingEdge
impl UnwindSafe for PendingEdge
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