[][src]Struct souper_ir::ast::Pc

pub struct Pc {
    pub x: Operand,
    pub y: Operand,
}

A path condition.

Expresses the fact that x must equal y for the replacement to be valid.

Fields

x: Operand

A value that must be equal to y for the replacement to be valid.

y: Operand

A value that must be equal to x for the replacement to be valid.

Trait Implementations

impl Clone for Pc[src]

impl Debug for Pc[src]

impl From<Pc> for Statement[src]

impl Parse for Pc[src]

impl Peek for Pc[src]

Auto Trait Implementations

impl RefUnwindSafe for Pc

impl Send for Pc

impl Sync for Pc

impl Unpin for Pc

impl UnwindSafe for Pc

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> 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.