[][src]Enum c2rust_transpile::translator::ExprUse

pub enum ExprUse {
    Unused,
    Used,
}

This represents all of the ways a C expression can be used in a C program. Making this distinction is important for:

  • not generating a bunch of unnecessary code, e.g., the expression p = 1 evaluates 1, but when used in a statement like p = 1;, we don't care about this, so we can translate to the Rust p = 1 (even if it evaluates to the unit type). We get this behaviour by translating expression statements using ExprUse::Unused.

  • handling volatile properly, e.g., suppose volatile int n, *p; and int x;. Then, x = n is a volatile read of n but p = &n is not. We get this behaviour by translating the argument of & using ExprUse::LValue and the right hand side of =

    using ExprUse::RValue.

  • handling volatile properly

See Translation::convert_expr for more details.

Variants

Unused

expressions interesting only for their side-effects - we don't care about their values

Used

expressions used for their values

Trait Implementations

impl Eq for ExprUse[src]

impl Copy for ExprUse[src]

impl PartialOrd<ExprUse> for ExprUse[src]

#[must_use]
default fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
default fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
default fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
default fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<ExprUse> for ExprUse[src]

#[must_use]
default fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for ExprUse[src]

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

Performs copy-assignment from source. Read more

impl Ord for ExprUse[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

default fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

default fn clamp(self, min: Self, max: Self) -> Self[src]

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

Restrict a value to a certain interval. Read more

impl Debug for ExprUse[src]

Auto Trait Implementations

impl Send for ExprUse

impl Sync for ExprUse

Blanket Implementations

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

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<E> SpecializationError for E[src]

impl<T> Erased for T[src]

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

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

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

impl<T> Make for T[src]

impl<T> MaybeResult for T[src]

impl<'a, T> Captures for T where
    T: ?Sized
[src]

impl<T> Erased for T