Struct rustc_typeck::hir::Arm
[−]
[src]
pub struct Arm { pub attrs: P<[Attribute]>, pub pats: P<[P<Pat>]>, pub guard: Option<P<Expr>>, pub body: P<Expr>, }
🔬 This is a nightly-only experimental API. (
rustc_private
)represents one arm of a 'match'
Fields
attrs: P<[Attribute]>
🔬 This is a nightly-only experimental API. (
rustc_private
)pats: P<[P<Pat>]>
🔬 This is a nightly-only experimental API. (
rustc_private
)guard: Option<P<Expr>>
🔬 This is a nightly-only experimental API. (
rustc_private
)body: P<Expr>
🔬 This is a nightly-only experimental API. (
rustc_private
)Methods
impl Arm
[src]
fn contains_ref_binding(&self) -> Option<Mutability>
🔬 This is a nightly-only experimental API. (
rustc_private
)Checks if the patterns for this arm contain any ref
or ref mut
bindings, and if yes whether its containing mutable ones or just immutables ones.
Trait Implementations
impl Decodable for Arm
[src]
fn decode<__D>(__arg_0: &mut __D) -> Result<Arm, __D::Error> where __D: Decoder
🔬 This is a nightly-only experimental API. (
rustc_private
)impl PartialEq<Arm> for Arm
[src]
fn eq(&self, __arg_0: &Arm) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Arm) -> bool
This method tests for !=
.
impl Hash for Arm
[src]
fn hash<__H>(&self, __arg_0: &mut __H) where __H: Hasher
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0
Feeds a slice of this type into the state provided.
impl Clone for Arm
[src]
fn clone(&self) -> Arm
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more
impl Eq for Arm
[src]
impl Debug for Arm
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.