[][src]Struct syn::ExprContinue

pub struct ExprContinue {
    pub attrs: Vec<Attribute>,
    pub continue_token: Continue,
    pub label: Option<Lifetime>,
}

A continue, with an optional label.

This type is available if Syn is built with the "full" feature.

Fields

attrs: Vec<Attribute>continue_token: Continuelabel: Option<Lifetime>

Trait Implementations

impl Parse for ExprContinue[src]

impl From<ExprContinue> for Expr[src]

impl Clone for ExprContinue[src]

impl Eq for ExprContinue[src]

impl PartialEq<ExprContinue> for ExprContinue[src]

impl Debug for ExprContinue[src]

impl Hash for ExprContinue[src]

impl StructuralPartialEq for ExprContinue[src]

impl StructuralEq for ExprContinue[src]

impl ToTokens for ExprContinue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Spanned for T where
    T: Spanned + ?Sized
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]