pub enum ElseBranch {
ElseIf(Box<IfStmt>),
Else(Block),
}Expand description
The else clause of an if statement or expression.
Variants§
Trait Implementations§
Source§impl Clone for ElseBranch
impl Clone for ElseBranch
Source§fn clone(&self) -> ElseBranch
fn clone(&self) -> ElseBranch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ElseBranch
impl RefUnwindSafe for ElseBranch
impl Send for ElseBranch
impl Sync for ElseBranch
impl Unpin for ElseBranch
impl UnsafeUnpin for ElseBranch
impl UnwindSafe for ElseBranch
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