pub struct Match<N: Node> {
pub expr: Expr,
pub brace_token: Brace,
pub arms: Vec<MatchNodeArm<N>>,
/* private fields */
}Fields§
§expr: Expr§brace_token: Brace§arms: Vec<MatchNodeArm<N>>Trait Implementations§
Auto Trait Implementations§
impl<N> !Send for Match<N>
impl<N> !Sync for Match<N>
impl<N> Freeze for Match<N>
impl<N> RefUnwindSafe for Match<N>where
N: RefUnwindSafe,
impl<N> Unpin for Match<N>where
N: Unpin,
impl<N> UnsafeUnpin for Match<N>
impl<N> UnwindSafe for Match<N>where
N: 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