[][src]Struct gamma::traversal::Step

pub struct Step {
    pub sid: usize,
    pub tid: usize,
    pub cut: bool,
}

A single traversal step comprised of source and target nodes, and a boolean flag indicating whether a cycle cut is present.

Fields

sid: usizetid: usizecut: bool

Implementations

impl Step[src]

pub fn new(sid: usize, tid: usize, cut: bool) -> Self[src]

Trait Implementations

impl Debug for Step[src]

impl Eq for Step[src]

impl Hash for Step[src]

impl PartialEq<Step> for Step[src]

impl StructuralEq for Step[src]

impl StructuralPartialEq for Step[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.