Enum rustc::ty::UpvarCapture
[−]
[src]
pub enum UpvarCapture<'tcx> {
ByValue,
ByRef(UpvarBorrow<'tcx>),
}🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Information describing the capture of an upvar. This is computed
during typeck, specifically by regionck.
Variants
ByValue🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Upvar is captured by value. This is always true when the
closure is labeled move, but can also be true in other cases
depending on inference.
ByRef(UpvarBorrow<'tcx>)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Upvar is captured by reference.
Trait Implementations
impl<'gcx> HashStable<StableHashingContext<'gcx>> for UpvarCapture<'gcx>[src]
fn hash_stable<W: StableHasherResult>(
&self,
hcx: &mut StableHashingContext<'gcx>,
hasher: &mut StableHasher<W>
)[src]
&self,
hcx: &mut StableHashingContext<'gcx>,
hasher: &mut StableHasher<W>
)
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
impl<'tcx> PartialEq for UpvarCapture<'tcx>[src]
fn eq(&self, __arg_0: &UpvarCapture<'tcx>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &UpvarCapture<'tcx>) -> bool[src]
This method tests for !=.
impl<'tcx> Clone for UpvarCapture<'tcx>[src]
fn clone(&self) -> UpvarCapture<'tcx>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'tcx> Debug for UpvarCapture<'tcx>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<'tcx> Copy for UpvarCapture<'tcx>[src]
impl<'tcx> Encodable for UpvarCapture<'tcx>[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>[src]
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?