pub struct ExprParen {
pub attrs: Vec<Attribute>,
pub paren_token: Paren,
pub expr: Box<Expr>,
}Expand description
A parenthesized expression: (a + b).
Fields§
§attrs: Vec<Attribute>§paren_token: Paren§expr: Box<Expr>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExprParen
impl RefUnwindSafe for ExprParen
impl !Send for ExprParen
impl !Sync for ExprParen
impl Unpin for ExprParen
impl UnwindSafe for ExprParen
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more