Struct wasmtime_environ::__core::marker::PhantomPinned
1.33.0 · source · 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 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
source§fn eq(&self, other: &PhantomPinned) -> bool
fn eq(&self, other: &PhantomPinned) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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>
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 moreimpl Copy for PhantomPinned
impl Eq for PhantomPinned
impl StructuralPartialEq for PhantomPinned
impl !Unpin 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: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.