Struct rustc::mir::repr::UpvarDecl [] [src]

pub struct UpvarDecl {
    pub debug_name: Name,
    pub by_ref: bool,
}
Unstable (rustc_private)

A closure capture, with its name and mode.

Fields

debug_name: Name
Unstable (rustc_private)
by_ref: bool
Unstable (rustc_private)

If true, the capture is behind a reference.

Trait Implementations

Derived Implementations

impl Decodable for UpvarDecl
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<UpvarDecl, __D::Error>

impl Encodable for UpvarDecl
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Debug for UpvarDecl
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for UpvarDecl
[src]

fn clone(&self) -> UpvarDecl

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