[−][src]Struct std::pin::Pin
A pinned pointer.
This is a wrapper around a kind of pointer which makes that pointer "pin" its
value in place, preventing the value referenced by that pointer from being moved
unless it implements Unpin
.
See the pin
module documentation for furthur explanation on pinning.
Methods
impl<P> Pin<P> where
P: Deref,
<P as Deref>::Target: Unpin,
[src]
impl<P> Pin<P> where
P: Deref,
<P as Deref>::Target: Unpin,
pub fn new(pointer: P) -> Pin<P>
[src]
pub fn new(pointer: P) -> Pin<P>
Construct a new Pin
around a pointer to some data of a type that
implements Unpin
.
impl<P> Pin<P> where
P: Deref,
[src]
impl<P> Pin<P> where
P: Deref,
pub unsafe fn new_unchecked(pointer: P) -> Pin<P>
[src]
pub unsafe fn new_unchecked(pointer: P) -> Pin<P>
Construct a new Pin
around a reference to some data of a type that
may or may not implement Unpin
.
Safety
This constructor is unsafe because we cannot guarantee that the data
pointed to by pointer
is pinned. If the constructed Pin<P>
does
not guarantee that the data P
points to is pinned, constructing a
Pin<P>
is undefined behavior.
If pointer
dereferences to an Unpin
type, Pin::new
should be used
instead.
pub fn as_ref(&self) -> Pin<&<P as Deref>::Target>
[src]
pub fn as_ref(&self) -> Pin<&<P as Deref>::Target>
Get a pinned shared reference from this pinned pointer.
impl<P> Pin<P> where
P: DerefMut,
[src]
impl<P> Pin<P> where
P: DerefMut,
pub fn as_mut(&mut self) -> Pin<&mut <P as Deref>::Target>
[src]
pub fn as_mut(&mut self) -> Pin<&mut <P as Deref>::Target>
Get a pinned mutable reference from this pinned pointer.
pub fn set(self, value: <P as Deref>::Target) where
<P as Deref>::Target: Sized,
[src]
pub fn set(self, value: <P as Deref>::Target) where
<P as Deref>::Target: Sized,
Assign a new value to the memory behind the pinned reference.
impl<'a, T> Pin<&'a T> where
T: ?Sized,
[src]
impl<'a, T> Pin<&'a T> where
T: ?Sized,
pub unsafe fn map_unchecked<U, F>(this: Pin<&'a T>, func: F) -> Pin<&'a U> where
F: FnOnce(&T) -> &U,
[src]
pub unsafe fn map_unchecked<U, F>(this: Pin<&'a T>, func: F) -> Pin<&'a U> where
F: FnOnce(&T) -> &U,
Construct a new pin by mapping the interior value.
For example, if you wanted to get a Pin
of a field of something,
you could use this to get access to that field in one line of code.
Safety
This function is unsafe. You must guarantee that the data you return will not move so long as the argument value does not move (for example, because it is one of the fields of that value), and also that you do not move out of the argument you receive to the interior function.
ⓘImportant traits for &'a mut Ipub fn get_ref(this: Pin<&'a T>) -> &'a T
[src]
pub fn get_ref(this: Pin<&'a T>) -> &'a T
Get a shared reference out of a pin.
Note: Pin
also implements Deref
to the target, which can be used
to access the inner value. However, Deref
only provides a reference
that lives for as long as the borrow of the Pin
, not the lifetime of
the Pin
itself. This method allows turning the Pin
into a reference
with the same lifetime as the original Pin
.
impl<'a, T> Pin<&'a mut T> where
T: ?Sized,
[src]
impl<'a, T> Pin<&'a mut T> where
T: ?Sized,
pub fn into_ref(this: Pin<&'a mut T>) -> Pin<&'a T>
[src]
pub fn into_ref(this: Pin<&'a mut T>) -> Pin<&'a T>
Convert this Pin<&mut T>
into a Pin<&T>
with the same lifetime.
ⓘImportant traits for &'a mut Ipub fn get_mut(this: Pin<&'a mut T>) -> &'a mut T where
T: Unpin,
[src]
pub fn get_mut(this: Pin<&'a mut T>) -> &'a mut T where
T: Unpin,
Get a mutable reference to the data inside of this Pin
.
This requires that the data inside this Pin
is Unpin
.
Note: Pin
also implements DerefMut
to the data, which can be used
to access the inner value. However, DerefMut
only provides a reference
that lives for as long as the borrow of the Pin
, not the lifetime of
the Pin
itself. This method allows turning the Pin
into a reference
with the same lifetime as the original Pin
.
ⓘImportant traits for &'a mut Ipub unsafe fn get_mut_unchecked(this: Pin<&'a mut T>) -> &'a mut T
[src]
pub unsafe fn get_mut_unchecked(this: Pin<&'a mut T>) -> &'a mut T
Get a mutable reference to the data inside of this Pin
.
Safety
This function is unsafe. You must guarantee that you will never move
the data out of the mutable reference you receive when you call this
function, so that the invariants on the Pin
type can be upheld.
If the underlying data is Unpin
, Pin::get_mut
should be used
instead.
pub unsafe fn map_unchecked_mut<U, F>(
this: Pin<&'a mut T>,
func: F
) -> Pin<&'a mut U> where
F: FnOnce(&mut T) -> &mut U,
[src]
pub unsafe fn map_unchecked_mut<U, F>(
this: Pin<&'a mut T>,
func: F
) -> Pin<&'a mut U> where
F: FnOnce(&mut T) -> &mut U,
Construct a new pin by mapping the interior value.
For example, if you wanted to get a Pin
of a field of something,
you could use this to get access to that field in one line of code.
Safety
This function is unsafe. You must guarantee that the data you return will not move so long as the argument value does not move (for example, because it is one of the fields of that value), and also that you do not move out of the argument you receive to the interior function.
Trait Implementations
impl<P> DerefMut for Pin<P> where
P: DerefMut,
<P as Deref>::Target: Unpin,
[src]
impl<P> DerefMut for Pin<P> where
P: DerefMut,
<P as Deref>::Target: Unpin,
impl<P> Hash for Pin<P> where
P: Hash,
[src]
impl<P> Hash for Pin<P> where
P: Hash,
fn hash<__HP>(&self, state: &mut __HP) where
__HP: Hasher,
[src]
fn hash<__HP>(&self, state: &mut __HP) where
__HP: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<P> Deref for Pin<P> where
P: Deref,
[src]
impl<P> Deref for Pin<P> where
P: Deref,
type Target = <P as Deref>::Target
The resulting type after dereferencing.
fn deref(&self) -> &<P as Deref>::Target
[src]
fn deref(&self) -> &<P as Deref>::Target
Dereferences the value.
impl<P> Pointer for Pin<P> where
P: Pointer,
[src]
impl<P> Pointer for Pin<P> where
P: Pointer,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl<P> Debug for Pin<P> where
P: Debug,
[src]
impl<P> Debug for Pin<P> where
P: Debug,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<P> Clone for Pin<P> where
P: Clone,
[src]
impl<P> Clone for Pin<P> where
P: Clone,
fn clone(&self) -> Pin<P>
[src]
fn clone(&self) -> Pin<P>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<P> PartialOrd<Pin<P>> for Pin<P> where
P: PartialOrd<P>,
[src]
impl<P> PartialOrd<Pin<P>> for Pin<P> where
P: PartialOrd<P>,
fn partial_cmp(&self, other: &Pin<P>) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Pin<P>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Pin<P>) -> bool
[src]
fn lt(&self, other: &Pin<P>) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &Pin<P>) -> bool
[src]
fn le(&self, other: &Pin<P>) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Pin<P>) -> bool
[src]
fn gt(&self, other: &Pin<P>) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &Pin<P>) -> bool
[src]
fn ge(&self, other: &Pin<P>) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl<P> Ord for Pin<P> where
P: Ord,
[src]
impl<P> Ord for Pin<P> where
P: Ord,
fn cmp(&self, other: &Pin<P>) -> Ordering
[src]
fn cmp(&self, other: &Pin<P>) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl<P> Future for Pin<P> where
P: DerefMut,
<P as Deref>::Target: Future,
[src]
impl<P> Future for Pin<P> where
P: DerefMut,
<P as Deref>::Target: Future,
type Output = <<P as Deref>::Target as Future>::Output
🔬 This is a nightly-only experimental API. (futures_api
#50547)
futures in libcore are unstable
The result of the Future
.
fn poll(
self: Pin<&mut Pin<P>>,
lw: &LocalWaker
) -> Poll<<Pin<P> as Future>::Output>
[src]
fn poll(
self: Pin<&mut Pin<P>>,
lw: &LocalWaker
) -> Poll<<Pin<P> as Future>::Output>
🔬 This is a nightly-only experimental API. (futures_api
#50547)
futures in libcore are unstable
Attempt to resolve the future to a final value, registering the current task for wakeup if the value is not yet available. Read more
impl<P> Eq for Pin<P> where
P: Eq,
[src]
impl<P> Eq for Pin<P> where
P: Eq,
impl<P> PartialEq<Pin<P>> for Pin<P> where
P: PartialEq<P>,
[src]
impl<P> PartialEq<Pin<P>> for Pin<P> where
P: PartialEq<P>,
fn eq(&self, other: &Pin<P>) -> bool
[src]
fn eq(&self, other: &Pin<P>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Pin<P>) -> bool
[src]
fn ne(&self, other: &Pin<P>) -> bool
This method tests for !=
.
impl<P, U> CoerceUnsized<Pin<U>> for Pin<P> where
P: CoerceUnsized<U>,
[src]
impl<P, U> CoerceUnsized<Pin<U>> for Pin<P> where
P: CoerceUnsized<U>,
impl<P> Copy for Pin<P> where
P: Copy,
[src]
impl<P> Copy for Pin<P> where
P: Copy,
impl<P> Display for Pin<P> where
P: Display,
[src]
impl<P> Display for Pin<P> where
P: Display,
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl<P> Unpin for Pin<P>
[src]
impl<P> Unpin for Pin<P>
impl<T> From<Box<T>> for Pin<Box<T>>
[src]
impl<T> From<Box<T>> for Pin<Box<T>>
Auto Trait Implementations
Blanket Implementations
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
Performs the conversion.
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
Performs the conversion.
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
ⓘImportant traits for &'a mut Ifn borrow(&self) -> &T
[src]
fn borrow(&self) -> &T
Immutably borrows from an owned value. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
ⓘImportant traits for &'a mut Ifn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
#27745)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
#41263)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> ToString for T where
T: Display + ?Sized,
[src]
impl<T> ToString for T where
T: Display + ?Sized,