pub enum VerifyBound<'db> {
IfEq(Binder<'db, VerifyIfEq<'db>>),
OutlivedBy(Region<'db>),
IsEmpty,
AnyBound(Vec<VerifyBound<'db>>),
AllBounds(Vec<VerifyBound<'db>>),
}
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(Binder<'db, VerifyIfEq<'db>>)
See VerifyIfEq
docs
OutlivedBy(Region<'db>)
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
.
IsEmpty
Given a region R
, true if it is 'empty
.
AnyBound(Vec<VerifyBound<'db>>)
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
.
AllBounds(Vec<VerifyBound<'db>>)
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.
Implementations§
Source§impl<'db> VerifyBound<'db>
impl<'db> VerifyBound<'db>
pub fn must_hold(&self) -> bool
pub fn cannot_hold(&self) -> bool
pub fn or(self, vb: VerifyBound<'db>) -> VerifyBound<'db>
Trait Implementations§
Source§impl<'db> Clone for VerifyBound<'db>
impl<'db> Clone for VerifyBound<'db>
Source§fn clone(&self) -> VerifyBound<'db>
fn clone(&self) -> VerifyBound<'db>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<'db> Freeze for VerifyBound<'db>
impl<'db> !RefUnwindSafe for VerifyBound<'db>
impl<'db> Send for VerifyBound<'db>
impl<'db> Sync for VerifyBound<'db>
impl<'db> Unpin for VerifyBound<'db>
impl<'db> !UnwindSafe for VerifyBound<'db>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more