Struct devise::syn::ExprCast [−][src]
pub struct ExprCast {
pub attrs: Vec<Attribute, Global>,
pub expr: Box<Expr, Global>,
pub as_token: As,
pub ty: Box<Type, Global>,
}
Expand description
A cast expression: foo as f64
.
This type is available if Syn is built with the "derive"
or
"full"
feature.
Fields
attrs: Vec<Attribute, Global>
expr: Box<Expr, Global>
as_token: As
ty: Box<Type, Global>
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ExprCast
impl UnwindSafe for ExprCast
Blanket Implementations
Mutably borrows from an owned value. Read more
Returns a Span
covering the complete contents of this syntax tree
node, or Span::call_site()
if this node is empty. Read more