[][src]Enum libslide::StmtKind

pub enum StmtKind {
    Expr(RcExpr),
    Assignment(Assignment),
}

The kind of a statement.

Variants

Expr(RcExpr)

An expression statement is a statement that consists solely of an expression. For example, the slide program

1 + 1

contains one statement, that statement also being an expression.

Assignment(Assignment)

An assignment binds some value to a variable. For example the statement

x = 1 + 1

binds the expression "1 + 1" to "x".

Trait Implementations

impl Clone for StmtKind[src]

impl Debug for StmtKind[src]

impl Display for StmtKind[src]

impl Emit for StmtKind[src]

impl From<Assignment> for StmtKind[src]

impl From<RcExpr> for StmtKind[src]

Auto Trait Implementations

impl RefUnwindSafe for StmtKind

impl Send for StmtKind

impl Sync for StmtKind

impl Unpin for StmtKind

impl UnwindSafe for StmtKind

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> ToString for T where
    T: Display + ?Sized
[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.