Enum rustc_infer::infer::region_constraints::VerifyBound [−][src]
pub enum VerifyBound<'tcx> {
IfEq(Ty<'tcx>, Box<VerifyBound<'tcx>>),
OutlivedBy(Region<'tcx>),
IsEmpty,
AnyBound(Vec<VerifyBound<'tcx>>),
AllBounds(Vec<VerifyBound<'tcx>>),
}
Expand description
Describes the things that some GenericKind
value G
is known to
outlive. Each variant of VerifyBound
can be thought of as a
function:
fn(min: Region) -> bool { .. }
where true
means that the region min
meets that G: min
.
(False means nothing.)
So, for example, if we have the type T
and we have in scope that
T: 'a
and T: 'b
, then the verify bound might be:
fn(min: Region) -> bool {
('a: min) || ('b: min)
}
This is described with an AnyRegion('a, 'b)
node.
Variants
IfEq(Ty<'tcx>, Box<VerifyBound<'tcx>>)
Given a kind K and a bound B, expands to a function like the
following, where G
is the generic for which this verify
bound was created:
fn(min) -> bool {
if G == K {
B(min)
} else {
false
}
}
In other words, if the generic G
that we are checking is
equal to K
, then check the associated verify bound
(otherwise, false).
This is used when we have something in the environment that
may or may not be relevant, depending on the region inference
results. For example, we may have where <T as Trait<'a>>::Item: 'b
in our where-clauses. If we are
generating the verify-bound for <T as Trait<'0>>::Item
, then
this where-clause is only relevant if '0
winds up inferred
to 'a
.
So we would compile to a verify-bound like
IfEq(<T as Trait<'a>>::Item, AnyRegion('a))
meaning, if the subject G is equal to <T as Trait<'a>>::Item
(after inference), and 'a: min
, then G: min
.
Tuple Fields of IfEq
0: Ty<'tcx>
1: Box<VerifyBound<'tcx>>
OutlivedBy(Region<'tcx>)
Given a region R
, expands to the function:
fn(min) -> bool {
R: min
}
This is used when we can establish that G: R
– therefore,
if R: min
, then by transitivity G: min
.
Tuple Fields of OutlivedBy
0: Region<'tcx>
Given a region R
, true if it is 'empty
.
AnyBound(Vec<VerifyBound<'tcx>>)
Given a set of bounds B
, expands to the function:
fn(min) -> bool {
exists (b in B) { b(min) }
}
In other words, if we meet some bound in B
, that suffices.
This is used when all the bounds in B
are known to apply to G
.
Tuple Fields of AnyBound
0: Vec<VerifyBound<'tcx>>
AllBounds(Vec<VerifyBound<'tcx>>)
Given a set of bounds B
, expands to the function:
fn(min) -> bool {
forall (b in B) { b(min) }
}
In other words, if we meet all bounds in B
, that suffices.
This is used when some bound in B
is known to suffice, but
we don’t know which.
Tuple Fields of AllBounds
0: Vec<VerifyBound<'tcx>>
Implementations
Trait Implementations
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for VerifyBound<'tcx>
impl<'tcx> !Send for VerifyBound<'tcx>
impl<'tcx> !Sync for VerifyBound<'tcx>
impl<'tcx> Unpin for VerifyBound<'tcx>
impl<'tcx> !UnwindSafe for VerifyBound<'tcx>
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: 32 bytes
Size for each variant:
IfEq
: 16 bytesOutlivedBy
: 8 bytesIsEmpty
: 0 bytesAnyBound
: 24 bytesAllBounds
: 24 bytes