pub enum ElseBranch {
Else(Block),
ElseIf(Box<Expr>, Block, Option<Box<ElseBranch>>),
}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 · 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 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