[][src]Enum flag_algebra::flags::Arc

pub enum Arc {
    None,
    Edge,
    BackEdge,
}

The arc between two nodes of a directed graphs.

Variants

None

No arc.

Edge

Arc from the first to the second vertex considered.

BackEdge

Arc from the second to the first vertex considered.

Trait Implementations

impl Enum for Arc[src]

impl Clone for Arc[src]

impl Copy for Arc[src]

impl Default for Arc[src]

impl Eq for Arc[src]

impl Ord for Arc[src]

impl PartialEq<Arc> for Arc[src]

impl PartialOrd<Arc> for Arc[src]

impl Debug for Arc[src]

impl Neg for Arc[src]

type Output = Self

The resulting type after applying the - operator.

impl StructuralPartialEq for Arc[src]

impl StructuralEq for Arc[src]

impl Serialize for Arc[src]

impl<'de> Deserialize<'de> for Arc[src]

Auto Trait Implementations

impl Send for Arc

impl Sync for Arc

impl Unpin for Arc

impl UnwindSafe for Arc

impl RefUnwindSafe for Arc

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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

impl<T> ClosedNeg for T where
    T: Neg<Output = T>, 

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,