pub struct SwitchCase {
pub value: Option<Expression>,
pub body: Vec<Statement>,
}Expand description
Represents a single case in a switch statement.
Fields§
§value: Option<Expression>Case value expression (None for default case)
body: Vec<Statement>Statements to execute for this case
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§fn clone_from(&mut self, source: &Self)
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