Struct syn::ExprContinue [−][src]
pub struct ExprContinue {
pub attrs: Vec<Attribute>,
pub continue_token: Continue,
pub label: Option<Lifetime>,
}
Expand description
A continue
, with an optional label.
This type is available only if Syn is built with the "full"
feature.
Fields
attrs: Vec<Attribute>
continue_token: Continue
label: Option<Lifetime>
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for ExprContinue
impl !Send for ExprContinue
impl !Sync for ExprContinue
impl Unpin for ExprContinue
impl UnwindSafe for ExprContinue
Blanket Implementations
Mutably borrows from an owned value. Read more