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
Implementations
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more