Struct syn::ExprAwait [−][src]
pub struct ExprAwait {
pub attrs: Vec<Attribute>,
pub base: Box<Expr>,
pub dot_token: Dot,
pub await_token: Await,
}This is supported on crate feature
full only.An await expression: fut.await.
This type is available only if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute>base: Box<Expr>dot_token: Dotawait_token: AwaitTrait Implementations
impl Clone for ExprAwait[src]
impl Clone for ExprAwait[src]This is supported on crate feature
clone-impls only.fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl ToTokens for ExprAwait[src]
impl ToTokens for ExprAwait[src]This is supported on crate feature
printing only.fn to_tokens(&self, tokens: &mut TokenStream)[src]
pub fn to_token_stream(&self) -> TokenStream[src]
pub fn into_token_stream(self) -> TokenStream[src]
Auto Trait Implementations
impl RefUnwindSafe for ExprAwait
impl RefUnwindSafe for ExprAwaitimpl UnwindSafe for ExprAwait
impl UnwindSafe for ExprAwait