Enum rustc_borrowck::places_conflict::PlaceConflictBias [−][src]
pub(crate) enum PlaceConflictBias {
Overlap,
NoOverlap,
}
Expand description
When checking if a place conflicts with another place, this enum is used to influence decisions
where a place might be equal or disjoint with another place, such as if a[i] == a[j]
.
PlaceConflictBias::Overlap
would bias toward assuming that i
might equal j
and that these
places overlap. PlaceConflictBias::NoOverlap
assumes that for the purposes of the predicate
being run in the calling context, the conservative choice is to assume the compared indices
are disjoint (and therefore, do not overlap).
Variants
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PlaceConflictBias
impl Send for PlaceConflictBias
impl Sync for PlaceConflictBias
impl Unpin for PlaceConflictBias
impl UnwindSafe for PlaceConflictBias
Blanket Implementations
Mutably borrows from an owned value. Read more
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: 1 byte
Size for each variant:
Overlap
: 0 bytesNoOverlap
: 0 bytes