[][src]Enum p8n_types::Guard

pub enum Guard {
    True,
    False,
    Predicate {
        flag: Variable,
        expected: bool,
    },
}

Branch condition

Variants

True

Guard is constant true

False

Guard is constant false

Predicate

Guard depends on a one bit RREIL value.

Fields of Predicate

flag: Variable

Flag value. Must be 0 or 1.

expected: bool

Expected value of flag. If flag is 1 and expected is true or if flag is 1 and expected is true the guard is true. Otherwise its false.

Trait Implementations

impl Eq for Guard[src]

impl Clone for Guard[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Guard> for Guard[src]

impl Debug for Guard[src]

Auto Trait Implementations

impl Send for Guard

impl Sync for Guard

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]