1.33.0[−][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 further explanation on pinning.
Methods
impl<P> Pin<P> where
P: Deref,
<P as Deref>::Target: Unpin, [src]
P: Deref,
<P as Deref>::Target: Unpin,
pub fn new(pointer: P) -> Pin<P>[src]
Construct a new Pin around a pointer to some data of a type that
implements Unpin.
impl<P> Pin<P> where
P: Deref, [src]
P: Deref,
pub unsafe fn new_unchecked(pointer: P) -> Pin<P>[src]
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]
Get a pinned shared reference from this pinned pointer.
impl<P> Pin<P> where
P: DerefMut, [src]
P: DerefMut,
pub fn as_mut(&mut self) -> Pin<&mut <P as Deref>::Target>[src]
Get a pinned mutable reference from this pinned pointer.
pub fn set(&mut self, value: <P as Deref>::Target) where
<P as Deref>::Target: Sized, [src]
<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]
T: ?Sized,
pub unsafe fn map_unchecked<U, F>(self, func: F) -> Pin<&'a U> where
F: FnOnce(&T) -> &U, [src]
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 &'_ mut Ipub fn get_ref(self) -> &'a T[src]
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]
T: ?Sized,
pub fn into_ref(self) -> Pin<&'a T>[src]
Convert this Pin<&mut T> into a Pin<&T> with the same lifetime.
ⓘImportant traits for &'_ mut Ipub fn get_mut(self) -> &'a mut T where
T: Unpin, [src]
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 &'_ mut Ipub unsafe fn get_unchecked_mut(self) -> &'a mut T[src]
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>(self, func: F) -> Pin<&'a mut U> where
F: FnOnce(&mut T) -> &mut U, [src]
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, Q> PartialOrd<Pin<Q>> for Pin<P> where
P: PartialOrd<Q>, 1.34.0[src]
P: PartialOrd<Q>,
fn partial_cmp(&self, other: &Pin<Q>) -> Option<Ordering>[src]
fn lt(&self, other: &Pin<Q>) -> bool[src]
fn le(&self, other: &Pin<Q>) -> bool[src]
fn gt(&self, other: &Pin<Q>) -> bool[src]
fn ge(&self, other: &Pin<Q>) -> bool[src]
impl<P> Ord for Pin<P> where
P: Ord, [src]
P: Ord,
fn cmp(&self, other: &Pin<P>) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl<P> Pointer for Pin<P> where
P: Pointer, [src]
P: Pointer,
impl<'a, P, U> DispatchFromDyn<Pin<U>> for Pin<P> where
P: DispatchFromDyn<U>, [src]
P: DispatchFromDyn<U>,
impl<P> Eq for Pin<P> where
P: Eq, [src]
P: Eq,
impl<P, Q> PartialEq<Pin<Q>> for Pin<P> where
P: PartialEq<Q>, 1.34.0[src]
P: PartialEq<Q>,
impl<P> Debug for Pin<P> where
P: Debug, [src]
P: Debug,
impl<P> Hash for Pin<P> where
P: Hash, [src]
P: Hash,
fn hash<__HP>(&self, state: &mut __HP) where
__HP: Hasher, [src]
__HP: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl<P> Copy for Pin<P> where
P: Copy, [src]
P: Copy,
impl<P> Future for Pin<P> where
P: Unpin + DerefMut,
<P as Deref>::Target: Future, [src]
P: Unpin + 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]
self: Pin<&mut Pin<P>>,
lw: &LocalWaker
) -> Poll<<Pin<P> as Future>::Output>
impl<P> DerefMut for Pin<P> where
P: DerefMut,
<P as Deref>::Target: Unpin, [src]
P: DerefMut,
<P as Deref>::Target: Unpin,
impl<P> Deref for Pin<P> where
P: Deref, [src]
P: Deref,
type Target = <P as Deref>::Target
The resulting type after dereferencing.
fn deref(&self) -> &<P as Deref>::Target[src]
impl<'_, G> Generator for Pin<&'_ mut G> where
G: Generator + ?Sized, [src]
G: Generator + ?Sized,
type Yield = <G as Generator>::Yield
The type of value this generator yields. Read more
type Return = <G as Generator>::Return
The type of value this generator returns. Read more
fn resume(
self: Pin<&mut Pin<&'_ mut G>>
) -> GeneratorState<<Pin<&'_ mut G> as Generator>::Yield, <Pin<&'_ mut G> as Generator>::Return>[src]
self: Pin<&mut Pin<&'_ mut G>>
) -> GeneratorState<<Pin<&'_ mut G> as Generator>::Yield, <Pin<&'_ mut G> as Generator>::Return>
impl<P> Display for Pin<P> where
P: Display, [src]
P: Display,
impl<P, U> CoerceUnsized<Pin<U>> for Pin<P> where
P: CoerceUnsized<U>, [src]
P: CoerceUnsized<U>,
impl<P> Clone for Pin<P> where
P: Clone, [src]
P: Clone,
fn clone(&self) -> Pin<P>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<G> Generator for Pin<Box<G>> where
G: Generator + ?Sized, [src]
G: Generator + ?Sized,
type Yield = <G as Generator>::Yield
The type of value this generator yields. Read more
type Return = <G as Generator>::Return
The type of value this generator returns. Read more
fn resume(
self: Pin<&mut Pin<Box<G>>>
) -> GeneratorState<<Pin<Box<G>> as Generator>::Yield, <Pin<Box<G>> as Generator>::Return>[src]
self: Pin<&mut Pin<Box<G>>>
) -> GeneratorState<<Pin<Box<G>> as Generator>::Yield, <Pin<Box<G>> as Generator>::Return>
impl<T> From<Box<T>> for Pin<Box<T>> where
T: ?Sized, [src]
T: ?Sized,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
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]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
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]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
ⓘImportant traits for &'_ mut Ifn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,