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

🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)
🔬 This is a nightly-only experimental API. (rustc_private)

Methods

impl Arm
[src]

🔬 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]

🔬 This is a nightly-only experimental API. (rustc_private)

impl PartialEq<Arm> for Arm
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for Arm
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl Clone for Arm
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Arm
[src]

impl Debug for Arm
[src]

Formats the value using the given formatter.

impl Encodable for Arm
[src]

🔬 This is a nightly-only experimental API. (rustc_private)