pub struct Parenthesized<T> {
pub open_paren: Span,
pub val: T,
pub close_paren: Span,
}Fields§
§open_paren: Span§val: T§close_paren: SpanImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Parenthesized<T>where
T: Freeze,
impl<T> RefUnwindSafe for Parenthesized<T>where
T: RefUnwindSafe,
impl<T> Send for Parenthesized<T>where
T: Send,
impl<T> Sync for Parenthesized<T>where
T: Sync,
impl<T> Unpin for Parenthesized<T>where
T: Unpin,
impl<T> UnwindSafe for Parenthesized<T>where
T: UnwindSafe,
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