[][src]Struct tcb::causality_checker::causality_checker_structs::CheckNode

pub struct CheckNode {
    pub dot: Dot,
    pub predecessors: SmallVec<[usize; 4]>,
    pub successors: SmallVec<[usize; 4]>,
}

Node of the causal graph built while looping through the dot sequences.

Fields

dot: Dot

Message's dot

predecessors: SmallVec<[usize; 4]>

Predecessor indexes

successors: SmallVec<[usize; 4]>

Successors indexes

Implementations

impl CheckNode[src]

pub fn new(dot: Dot) -> CheckNode[src]

Creates a new node of the causal graph.

Arguments

dot - The message's dot.

Trait Implementations

impl Debug for CheckNode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.