[][src]Struct c2rust_transpile::with_stmts::WithStmts

pub struct WithStmts<T> {
    pub stmts: Vec<Stmt>,
    pub val: T,
}

Fields

stmts: Vec<Stmt>val: T

Methods

impl<T> WithStmts<T>[src]

pub fn new(val: T) -> Self[src]

pub fn and_then<U, F>(self, f: F) -> WithStmts<U> where
    F: FnOnce(T) -> WithStmts<U>, 
[src]

pub fn map<U, F>(self, f: F) -> WithStmts<U> where
    F: FnOnce(T) -> U, 
[src]

pub fn result_map<U, E, F>(self, f: F) -> Result<WithStmts<U>, E> where
    F: FnOnce(T) -> Result<U, E>, 
[src]

impl WithStmts<P<Expr>>[src]

pub fn to_expr(self) -> P<Expr>[src]

Package a series of statements and an expression into one block expression

pub fn to_block(self) -> P<Block>[src]

Package a series of statements and an expression into one block

pub fn with_stmts_opt<T>(opt: Option<WithStmts<T>>) -> WithStmts<Option<T>>[src]

Trait Implementations

impl<T: Debug> Debug for WithStmts<T>[src]

Auto Trait Implementations

impl<T> !Send for WithStmts<T>

impl<T> !Sync for WithStmts<T>

Blanket Implementations

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