pub struct PhantomCovariantLifetime<'a>(/* private fields */);
Expand description
Zero-sized type used to mark a lifetime as covariant.
Covariant lifetimes must live at least as long as declared. See the reference for more information.
§Layout
For all 'a
, the following are guaranteed:
size_of::<PhantomCovariantLifetime<'a>>() == 0
align_of::<PhantomCovariantLifetime<'a>>() == 1
Implementations§
Source§impl PhantomCovariantLifetime<'_>
impl PhantomCovariantLifetime<'_>
Trait Implementations§
Source§impl<'a> Clone for PhantomCovariantLifetime<'a>
impl<'a> Clone for PhantomCovariantLifetime<'a>
Source§fn clone(&self) -> PhantomCovariantLifetime<'a>
fn clone(&self) -> PhantomCovariantLifetime<'a>
Returns a duplicate 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 moreSource§impl Debug for PhantomCovariantLifetime<'_>
impl Debug for PhantomCovariantLifetime<'_>
Source§impl<'a> Default for PhantomCovariantLifetime<'a>
impl<'a> Default for PhantomCovariantLifetime<'a>
Source§fn default() -> PhantomCovariantLifetime<'a>
fn default() -> PhantomCovariantLifetime<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> Hash for PhantomCovariantLifetime<'a>
impl<'a> Hash for PhantomCovariantLifetime<'a>
Source§impl<'a> Ord for PhantomCovariantLifetime<'a>
impl<'a> Ord for PhantomCovariantLifetime<'a>
Source§fn cmp(&self, other: &PhantomCovariantLifetime<'a>) -> Ordering
fn cmp(&self, other: &PhantomCovariantLifetime<'a>) -> 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
Source§impl<'a> PartialEq for PhantomCovariantLifetime<'a>
impl<'a> PartialEq for PhantomCovariantLifetime<'a>
Source§fn eq(&self, other: &PhantomCovariantLifetime<'a>) -> bool
fn eq(&self, other: &PhantomCovariantLifetime<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<'a> PartialOrd for PhantomCovariantLifetime<'a>
impl<'a> PartialOrd for PhantomCovariantLifetime<'a>
impl<'a> Copy for PhantomCovariantLifetime<'a>
impl<'a> Eq for PhantomCovariantLifetime<'a>
impl<'a> StructuralPartialEq for PhantomCovariantLifetime<'a>
impl Variance for PhantomCovariantLifetime<'_>
Auto Trait Implementations§
impl<'a> Freeze for PhantomCovariantLifetime<'a>
impl<'a> RefUnwindSafe for PhantomCovariantLifetime<'a>
impl<'a> Send for PhantomCovariantLifetime<'a>
impl<'a> Sync for PhantomCovariantLifetime<'a>
impl<'a> Unpin for PhantomCovariantLifetime<'a>
impl<'a> UnwindSafe for PhantomCovariantLifetime<'a>
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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>
Converts
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>
Converts
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