pub struct SwitchCase {
pub expr: Either<Option<Expr>, ()>,
pub body: Option<Scope>,
pub span: Span,
}
Expand description
A switch case.
Fields§
§expr: Either<Option<Expr>, ()>
§body: Option<Scope>
§span: Span
Trait Implementations§
Source§impl Clone for SwitchCase
impl Clone for SwitchCase
Source§fn clone(&self) -> SwitchCase
fn clone(&self) -> SwitchCase
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SwitchCase
impl Debug for SwitchCase
Source§impl PartialEq for SwitchCase
impl PartialEq for SwitchCase
impl StructuralPartialEq for SwitchCase
Auto Trait Implementations§
impl Freeze for SwitchCase
impl RefUnwindSafe for SwitchCase
impl Send for SwitchCase
impl Sync for SwitchCase
impl Unpin for SwitchCase
impl UnwindSafe for SwitchCase
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