Type Alias scoped_futures::ImpliedLifetimeBound
source · pub type ImpliedLifetimeBound<'upper_bound, 'subject> = PhantomData<&'subject &'upper_bound ()>;
Expand description
A wrapper type which imposes an upper bound on a lifetime.
Aliased Type§
struct ImpliedLifetimeBound<'upper_bound, 'subject>;
Trait Implementations
1.0.0 · source§impl<T> Clone for PhantomData<T>where
T: ?Sized,
impl<T> Clone for PhantomData<T>where
T: ?Sized,
source§fn clone(&self) -> PhantomData<T>
fn clone(&self) -> PhantomData<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more1.0.0 · source§impl<T> Debug for PhantomData<T>where
T: ?Sized,
impl<T> Debug for PhantomData<T>where
T: ?Sized,
1.0.0 · source§impl<T> Default for PhantomData<T>where
T: ?Sized,
impl<T> Default for PhantomData<T>where
T: ?Sized,
source§fn default() -> PhantomData<T>
fn default() -> PhantomData<T>
Returns the “default value” for a type. Read more
1.0.0 · source§impl<T> Hash for PhantomData<T>where
T: ?Sized,
impl<T> Hash for PhantomData<T>where
T: ?Sized,
1.0.0 · source§impl<T> Ord for PhantomData<T>where
T: ?Sized,
impl<T> Ord for PhantomData<T>where
T: ?Sized,
source§fn cmp(&self, _other: &PhantomData<T>) -> Ordering
fn cmp(&self, _other: &PhantomData<T>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.0.0 · source§impl<T> PartialEq for PhantomData<T>where
T: ?Sized,
impl<T> PartialEq for PhantomData<T>where
T: ?Sized,
source§fn eq(&self, _other: &PhantomData<T>) -> bool
fn eq(&self, _other: &PhantomData<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.1.0.0 · source§impl<T> PartialOrd for PhantomData<T>where
T: ?Sized,
impl<T> PartialOrd for PhantomData<T>where
T: ?Sized,
source§fn partial_cmp(&self, _other: &PhantomData<T>) -> Option<Ordering>
fn partial_cmp(&self, _other: &PhantomData<T>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more