Struct syn::ExprLoop [−][src]
pub struct ExprLoop {
pub attrs: Vec<Attribute>,
pub label: Option<Label>,
pub loop_token: Loop,
pub body: Block,
}
Expand description
Conditionless loop: loop { ... }
.
This type is available only if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute>
label: Option<Label>
loop_token: Loop
body: Block
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ExprLoop
impl UnwindSafe for ExprLoop
Blanket Implementations
Mutably borrows from an owned value. Read more