Struct syn::ExprContinue
source · pub struct ExprContinue {
pub attrs: Vec<Attribute>,
pub continue_token: Continue,
pub label: Option<Lifetime>,
}
Expand description
A continue
, with an optional label.
Fields§
§attrs: Vec<Attribute>
§continue_token: Continue
§label: Option<Lifetime>
Trait Implementations§
source§impl From<ExprContinue> for Expr
impl From<ExprContinue> for Expr
source§fn from(e: ExprContinue) -> Expr
fn from(e: ExprContinue) -> Expr
Converts to this type from the input type.