pub struct PhantomPinned;
Expand description
A marker type which does not implement Unpin
.
If a type contains a PhantomPinned
, it will not implement Unpin
by default.
Trait Implementations§
1.33.0 · Source§impl Clone for PhantomPinned
impl Clone for PhantomPinned
Source§fn clone(&self) -> PhantomPinned
fn clone(&self) -> PhantomPinned
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.33.0 · Source§impl Debug for PhantomPinned
impl Debug for PhantomPinned
1.33.0 · Source§impl Default for PhantomPinned
impl Default for PhantomPinned
Source§fn default() -> PhantomPinned
fn default() -> PhantomPinned
Returns the “default value” for a type. Read more
1.33.0 · Source§impl Eq for PhantomPinned
impl Eq for PhantomPinned
#[doc(hidden)] fn assert_receiver_is_total_eq(&self)
1.33.0 · Source§impl Hash for PhantomPinned
impl Hash for PhantomPinned
1.33.0 · Source§impl Ord for PhantomPinned
impl Ord for PhantomPinned
Source§fn cmp(&self, other: &PhantomPinned) -> Ordering
fn cmp(&self, other: &PhantomPinned) -> 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.33.0 · Source§impl PartialEq for PhantomPinned
impl PartialEq for PhantomPinned
1.33.0 · Source§impl PartialOrd for PhantomPinned
impl PartialOrd for PhantomPinned
Source§fn partial_cmp(&self, other: &PhantomPinned) -> Option<Ordering>
fn partial_cmp(&self, other: &PhantomPinned) -> Option<Ordering>
Source§#[doc(hidden)] fn __chaining_lt(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)] fn __chaining_lt(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods
)If
self == other
, returns ControlFlow::Continue(())
.
Otherwise, returns ControlFlow::Break(self < other)
. Read moreSource§#[doc(hidden)] fn __chaining_le(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)] fn __chaining_le(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods
)Same as
__chaining_lt
, but for <=
instead of <
.Source§#[doc(hidden)] fn __chaining_gt(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)] fn __chaining_gt(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods
)Same as
__chaining_lt
, but for >
instead of <
.Source§#[doc(hidden)] fn __chaining_ge(&self, other: &Rhs) -> ControlFlow<bool>
#[doc(hidden)] fn __chaining_ge(&self, other: &Rhs) -> ControlFlow<bool>
🔬This is a nightly-only experimental API. (
partial_ord_chaining_methods
)Same as
__chaining_lt
, but for >=
instead of <
.impl Copy for PhantomPinned
impl StructuralPartialEq for PhantomPinned
impl !Unpin for PhantomPinned
impl !UnsafeUnpin for PhantomPinned
Auto Trait Implementations§
impl Freeze for PhantomPinned
impl RefUnwindSafe for PhantomPinned
impl Send for PhantomPinned
impl Sync for PhantomPinned
impl UnwindSafe for PhantomPinned
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,
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const IS_ZST: bool = _
#[doc(hidden)] const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const LAYOUT: Layout = _
#[doc(hidden)] const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
#[doc(hidden)] const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)The largest safe length for a
[Self]
. Read more