Struct ExprWhile
syn
pub struct ExprWhile { /* fields omitted */ }
A while loop: while expr { ... }.
while expr { ... }
This type is available if Syn is built with the "full" feature.
"full"
impl Clone for ExprWhile
fn clone(&self) -> ExprWhile
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
source
impl From<ExprWhile> for Expr
fn from(e: ExprWhile) -> Expr
Performs the conversion.
impl Send for ExprWhile
impl Sync for ExprWhile