pub struct PhantomCovariantLifetime<'a>(/* private fields */);
🔬This is a nightly-only experimental API. (
phantom_variance_markers
#135806)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§
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 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 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