Trait rust_ad_core::traits::UnwrapStmt[][src]

pub trait UnwrapStmt {
    fn local(&self) -> Result<&'_ Local, &'static str>;
fn local_mut(&mut self) -> Result<&'_ mut Local, &'static str>;
fn semi(&self) -> Result<&'_ Expr, &'static str>;
fn semi_mut(&mut self) -> Result<&'_ mut Expr, &'static str>; }

Required methods

Implementations on Foreign Types

Implementors