Enum sway_parse::expr::MatchBranchKind
source · [−]pub enum MatchBranchKind {
Block {
block: Braces<CodeBlockContents>,
comma_token_opt: Option<CommaToken>,
},
Expr {
expr: Expr,
comma_token: CommaToken,
},
}
Variants
Block
Expr
Trait Implementations
sourceimpl Clone for MatchBranchKind
impl Clone for MatchBranchKind
sourcefn clone(&self) -> MatchBranchKind
fn clone(&self) -> MatchBranchKind
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MatchBranchKind
impl Debug for MatchBranchKind
sourceimpl Parse for MatchBranchKind
impl Parse for MatchBranchKind
fn parse(parser: &mut Parser<'_, '_>) -> ParseResult<MatchBranchKind>
Auto Trait Implementations
impl RefUnwindSafe for MatchBranchKind
impl Send for MatchBranchKind
impl Sync for MatchBranchKind
impl Unpin for MatchBranchKind
impl UnwindSafe for MatchBranchKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more