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
sourceimpl From<ExprContinue> for Expr
impl From<ExprContinue> for Expr
sourcefn from(e: ExprContinue) -> Expr
fn from(e: ExprContinue) -> Expr
Converts to this type from the input type.
sourceimpl Parse for ExprContinue
impl Parse for ExprContinue
fn parse(input: ParseStream<'_>) -> Result<Self>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more