Struct syn::ExprType [−][src]
pub struct ExprType {
pub attrs: Vec<Attribute>,
pub expr: Box<Expr>,
pub colon_token: Colon,
pub ty: Box<Type>,
}This is supported on crate feature
full only.A type ascription expression: foo: f64.
This type is available only if Syn is built with the "full" feature.
Fields
attrs: Vec<Attribute>expr: Box<Expr>colon_token: Colonty: Box<Type>Trait Implementations
impl Clone for ExprType[src]
impl Clone for ExprType[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 Parse for ExprType[src]
impl Parse for ExprType[src]This is supported on crate feature
parsing only.fn parse(input: ParseStream<'_>) -> Result<Self>[src]
impl ToTokens for ExprType[src]
impl ToTokens for ExprType[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 ExprType
impl RefUnwindSafe for ExprTypeimpl UnwindSafe for ExprType
impl UnwindSafe for ExprType