struct TransferFunction<'a, 'mir, 'tcx, Q> {
    ccx: &'a ConstCx<'mir, 'tcx>,
    state: &'a mut State,
    _qualif: PhantomData<Q>,
}
Expand description

A Visitor that propagates qualifs between locals. This defines the transfer function of FlowSensitiveAnalysis.

To account for indirect assignments, data flow conservatively assumes that local becomes qualified immediately after it is borrowed or its address escapes. The borrow must allow for mutation, which includes shared borrows of places with interior mutability. The type of borrowed place must contain the qualif.

Fields

ccx: &'a ConstCx<'mir, 'tcx>state: &'a mut State_qualif: PhantomData<Q>

Implementations

& only allow mutation if the borrowed place is !Freeze.

This assumes that it is UB to take the address of a struct field whose type is Freeze, then use pointer arithmetic to derive a pointer to a different field of that same struct whose type is !Freeze. If we decide that this is not UB, we will have to check the type of the borrowed local instead of the borrowed place below. See rust-lang/unsafe-code-guidelines#134.

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.

Size: 16 bytes