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.
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§
source§impl Clone for ExprContinue
impl Clone for ExprContinue
source§impl Debug for ExprContinue
impl Debug for ExprContinue
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.