(function() { var type_impls = Object.fromEntries([["futures_core",[["
Source§

impl<P> AsyncIterator for Pin<P>
where\n P: DerefMut,\n <P as Deref>::Target: AsyncIterator,

Source§

type Item = <<P as Deref>::Target as AsyncIterator>::Item

🔬This is a nightly-only experimental API. (async_iterator)
The type of items yielded by the async iterator.
Source§

fn poll_next(\n self: Pin<&mut Pin<P>>,\n cx: &mut Context<'_>,\n) -> Poll<Option<<Pin<P> as AsyncIterator>::Item>>

🔬This is a nightly-only experimental API. (async_iterator)
Attempts to pull out the next value of this async iterator, registering the\ncurrent task for wakeup if the value is not yet available, and returning\nNone if the async iterator is exhausted. Read more
Source§

fn size_hint(&self) -> (usize, Option<usize>)

🔬This is a nightly-only experimental API. (async_iterator)
Returns the bounds on the remaining length of the async iterator. Read more
","AsyncIterator","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr> Clone for Pin<Ptr>
where\n Ptr: Clone,

Source§

fn clone(&self) -> Pin<Ptr>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
","Clone","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<G, R, A> Coroutine<R> for Pin<Box<G, A>>
where\n G: Coroutine<R> + ?Sized,\n A: Allocator + 'static,

Source§

type Yield = <G as Coroutine<R>>::Yield

🔬This is a nightly-only experimental API. (coroutine_trait)
The type of value this coroutine yields. Read more
Source§

type Return = <G as Coroutine<R>>::Return

🔬This is a nightly-only experimental API. (coroutine_trait)
The type of value this coroutine returns. Read more
Source§

fn resume(\n self: Pin<&mut Pin<Box<G, A>>>,\n arg: R,\n) -> CoroutineState<<Pin<Box<G, A>> as Coroutine<R>>::Yield, <Pin<Box<G, A>> as Coroutine<R>>::Return>

🔬This is a nightly-only experimental API. (coroutine_trait)
Resumes the execution of this coroutine. Read more
","Coroutine","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr> Debug for Pin<Ptr>
where\n Ptr: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Debug","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.91.0 · Source§

impl<T> Default for Pin<Box<T>>
where\n Box<T>: Default,\n T: ?Sized,

Source§

fn default() -> Pin<Box<T>>

Returns the “default value” for a type. Read more
","Default","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 (const: unstable) · Source§

impl<Ptr> Deref for Pin<Ptr>
where\n Ptr: Deref,

Source§

type Target = <Ptr as Deref>::Target

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<Ptr as Deref>::Target

Dereferences the value.
","Deref","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 (const: unstable) · Source§

impl<Ptr> DerefMut for Pin<Ptr>
where\n Ptr: DerefMut,\n <Ptr as Deref>::Target: Unpin,

Source§

fn deref_mut(&mut self) -> &mut <Ptr as Deref>::Target

Mutably dereferences the value.
","DerefMut","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr> Display for Pin<Ptr>
where\n Ptr: Display,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Display","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<T, A> From<Box<T, A>> for Pin<Box<T, A>>
where\n A: Allocator + 'static,\n T: ?Sized,

Source§

fn from(boxed: Box<T, A>) -> Pin<Box<T, A>>

Converts a Box<T> into a Pin<Box<T>>. If T does not implement Unpin, then\n*boxed will be pinned in memory and unable to be moved.

\n

This conversion does not allocate on the heap and happens in place.

\n

This is also available via Box::into_pin.

\n

Constructing and pinning a Box with <Pin<Box<T>>>::from(Box::new(x))\ncan also be written more concisely using Box::pin(x).\nThis From implementation is useful if you already have a Box<T>, or you are\nconstructing a (pinned) Box in a different way than with Box::new.

\n
","From>","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<P> FusedFuture for Pin<P>
where\n P: DerefMut + Unpin,\n P::Target: FusedFuture,

Source§

fn is_terminated(&self) -> bool

Returns true if the underlying future should no longer be polled.
","FusedFuture","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<P> FusedStream for Pin<P>
where\n P: DerefMut + Unpin,\n P::Target: FusedStream,

Source§

fn is_terminated(&self) -> bool

Returns true if the stream should no longer be polled.
","FusedStream","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.36.0 · Source§

impl<P> Future for Pin<P>
where\n P: DerefMut,\n <P as Deref>::Target: Future,

Source§

type Output = <<P as Deref>::Target as Future>::Output

The type of value produced on completion.
Source§

fn poll(\n self: Pin<&mut Pin<P>>,\n cx: &mut Context<'_>,\n) -> Poll<<Pin<P> as Future>::Output>

Attempts to resolve the future to a final value, registering\nthe current task for wakeup if the value is not yet available. Read more
","Future","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.41.0 · Source§

impl<Ptr> Hash for Pin<Ptr>
where\n Ptr: Deref,\n <Ptr as Deref>::Target: Hash,

Source§

fn hash<H>(&self, state: &mut H)
where\n H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where\n H: Hasher,\n Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
","Hash","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.41.0 · Source§

impl<Ptr> Ord for Pin<Ptr>
where\n Ptr: Deref,\n <Ptr as Deref>::Target: Ord,

Source§

fn cmp(&self, other: &Pin<Ptr>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where\n Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where\n Self: Sized,

Restrict a value to a certain interval. Read more
","Ord","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.41.0 · Source§

impl<Ptr, Q> PartialEq<Pin<Q>> for Pin<Ptr>
where\n Ptr: Deref,\n Q: Deref,\n <Ptr as Deref>::Target: PartialEq<<Q as Deref>::Target>,

Source§

fn eq(&self, other: &Pin<Q>) -> bool

Tests for self and other values to be equal, and is used by ==.
Source§

fn ne(&self, other: &Pin<Q>) -> bool

Tests for !=. The default implementation is almost always sufficient,\nand should not be overridden without very good reason.
","PartialEq>","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.41.0 · Source§

impl<Ptr, Q> PartialOrd<Pin<Q>> for Pin<Ptr>
where\n Ptr: Deref,\n Q: Deref,\n <Ptr as Deref>::Target: PartialOrd<<Q as Deref>::Target>,

Source§

fn partial_cmp(&self, other: &Pin<Q>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
Source§

fn lt(&self, other: &Pin<Q>) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
Source§

fn le(&self, other: &Pin<Q>) -> bool

Tests less than or equal to (for self and other) and is used by the\n<= operator. Read more
Source§

fn gt(&self, other: &Pin<Q>) -> bool

Tests greater than (for self and other) and is used by the >\noperator. Read more
Source§

fn ge(&self, other: &Pin<Q>) -> bool

Tests greater than or equal to (for self and other) and is used by\nthe >= operator. Read more
","PartialOrd>","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<Ptr> Pin<Ptr>
where\n Ptr: Deref,\n <Ptr as Deref>::Target: Unpin,

1.33.0 (const: 1.84.0) · Source

pub const fn new(pointer: Ptr) -> Pin<Ptr>

Constructs a new Pin<Ptr> around a pointer to some data of a type that\nimplements Unpin.

\n

Unlike Pin::new_unchecked, this method is safe because the pointer\nPtr dereferences to an Unpin type, which cancels the pinning guarantees.

\n
§Examples
\n
use std::pin::Pin;\n\nlet mut val: u8 = 5;\n\n// Since `val` doesn't care about being moved, we can safely create a \"facade\" `Pin`\n// which will allow `val` to participate in `Pin`-bound apis  without checking that\n// pinning guarantees are actually upheld.\nlet mut pinned: Pin<&mut u8> = Pin::new(&mut val);
1.39.0 (const: 1.84.0) · Source

pub const fn into_inner(pin: Pin<Ptr>) -> Ptr

Unwraps this Pin<Ptr>, returning the underlying pointer.

\n

Doing this operation safely requires that the data pointed at by this pinning pointer\nimplements Unpin so that we can ignore the pinning invariants when unwrapping it.

\n
§Examples
\n
use std::pin::Pin;\n\nlet mut val: u8 = 5;\nlet pinned: Pin<&mut u8> = Pin::new(&mut val);\n\n// Unwrap the pin to get the underlying mutable reference to the value. We can do\n// this because `val` doesn't care about being moved, so the `Pin` was just\n// a \"facade\" anyway.\nlet r = Pin::into_inner(pinned);\nassert_eq!(*r, 5);
",0,"futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<Ptr> Pin<Ptr>
where\n Ptr: Deref,

1.33.0 (const: 1.84.0) · Source

pub const unsafe fn new_unchecked(pointer: Ptr) -> Pin<Ptr>

Constructs a new Pin<Ptr> around a reference to some data of a type that\nmay or may not implement Unpin.

\n

If pointer dereferences to an Unpin type, Pin::new should be used\ninstead.

\n
§Safety
\n

This constructor is unsafe because we cannot guarantee that the data\npointed to by pointer is pinned. At its core, pinning a value means making the\nguarantee that the value’s data will not be moved nor have its storage invalidated until\nit gets dropped. For a more thorough explanation of pinning, see the pin module docs.

\n

If the caller that is constructing this Pin<Ptr> does not ensure that the data Ptr\npoints to is pinned, that is a violation of the API contract and may lead to undefined\nbehavior in later (even safe) operations.

\n

By using this method, you are also making a promise about the Deref,\nDerefMut, and Drop implementations of Ptr, if they exist. Most importantly, they\nmust not move out of their self arguments: Pin::as_mut and Pin::as_ref\nwill call DerefMut::deref_mut and Deref::deref on the pointer type Ptr\nand expect these methods to uphold the pinning invariants.\nMoreover, by calling this method you promise that the reference Ptr\ndereferences to will not be moved out of again; in particular, it\nmust not be possible to obtain a &mut Ptr::Target and then\nmove out of that reference (using, for example mem::swap).

\n

For example, calling Pin::new_unchecked on an &'a mut T is unsafe because\nwhile you are able to pin it for the given lifetime 'a, you have no control\nover whether it is kept pinned once 'a ends, and therefore cannot uphold the\nguarantee that a value, once pinned, remains pinned until it is dropped:

\n\n
use std::mem;\nuse std::pin::Pin;\n\nfn move_pinned_ref<T>(mut a: T, mut b: T) {\n    unsafe {\n        let p: Pin<&mut T> = Pin::new_unchecked(&mut a);\n        // This should mean the pointee `a` can never move again.\n    }\n    mem::swap(&mut a, &mut b); // Potential UB down the road ⚠️\n    // The address of `a` changed to `b`'s stack slot, so `a` got moved even\n    // though we have previously pinned it! We have violated the pinning API contract.\n}
\n

A value, once pinned, must remain pinned until it is dropped (unless its type implements\nUnpin). Because Pin<&mut T> does not own the value, dropping the Pin will not drop\nthe value and will not end the pinning contract. So moving the value after dropping the\nPin<&mut T> is still a violation of the API contract.

\n

Similarly, calling Pin::new_unchecked on an Rc<T> is unsafe because there could be\naliases to the same data that are not subject to the pinning restrictions:

\n\n
use std::rc::Rc;\nuse std::pin::Pin;\n\nfn move_pinned_rc<T>(mut x: Rc<T>) {\n    // This should mean the pointee can never move again.\n    let pin = unsafe { Pin::new_unchecked(Rc::clone(&x)) };\n    {\n        let p: Pin<&T> = pin.as_ref();\n        // ...\n    }\n    drop(pin);\n\n    let content = Rc::get_mut(&mut x).unwrap(); // Potential UB down the road ⚠️\n    // Now, if `x` was the only reference, we have a mutable reference to\n    // data that we pinned above, which we could use to move it as we have\n    // seen in the previous example. We have violated the pinning API contract.\n}
§Pinning of closure captures
\n

Particular care is required when using Pin::new_unchecked in a closure:\nPin::new_unchecked(&mut var) where var is a by-value (moved) closure capture\nimplicitly makes the promise that the closure itself is pinned, and that all uses\nof this closure capture respect that pinning.

\n\n
use std::pin::Pin;\nuse std::task::Context;\nuse std::future::Future;\n\nfn move_pinned_closure(mut x: impl Future, cx: &mut Context<'_>) {\n    // Create a closure that moves `x`, and then internally uses it in a pinned way.\n    let mut closure = move || unsafe {\n        let _ignore = Pin::new_unchecked(&mut x).poll(cx);\n    };\n    // Call the closure, so the future can assume it has been pinned.\n    closure();\n    // Move the closure somewhere else. This also moves `x`!\n    let mut moved = closure;\n    // Calling it again means we polled the future from two different locations,\n    // violating the pinning API contract.\n    moved(); // Potential UB ⚠️\n}
\n

When passing a closure to another API, it might be moving the closure any time, so\nPin::new_unchecked on closure captures may only be used if the API explicitly documents\nthat the closure is pinned.

\n

The better alternative is to avoid all that trouble and do the pinning in the outer function\ninstead (here using the pin! macro):

\n\n
use std::pin::pin;\nuse std::task::Context;\nuse std::future::Future;\n\nfn move_pinned_closure(mut x: impl Future, cx: &mut Context<'_>) {\n    let mut x = pin!(x);\n    // Create a closure that captures `x: Pin<&mut _>`, which is safe to move.\n    let mut closure = move || {\n        let _ignore = x.as_mut().poll(cx);\n    };\n    // Call the closure, so the future can assume it has been pinned.\n    closure();\n    // Move the closure somewhere else.\n    let mut moved = closure;\n    // Calling it again here is fine (except that we might be polling a future that already\n    // returned `Poll::Ready`, but that is a separate problem).\n    moved();\n}
1.33.0 (const: unstable) · Source

pub fn as_ref(&self) -> Pin<&<Ptr as Deref>::Target>
where\n Ptr: Deref,

Gets a shared reference to the pinned value this Pin points to.

\n

This is a generic method to go from &Pin<Pointer<T>> to Pin<&T>.\nIt is safe because, as part of the contract of Pin::new_unchecked,\nthe pointee cannot move after Pin<Pointer<T>> got created.\n“Malicious” implementations of Pointer::Deref are likewise\nruled out by the contract of Pin::new_unchecked.

\n
",0,"futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<Ptr> Pin<Ptr>
where\n Ptr: DerefMut,

1.33.0 (const: unstable) · Source

pub fn as_mut(&mut self) -> Pin<&mut <Ptr as Deref>::Target>
where\n Ptr: DerefMut,

Gets a mutable reference to the pinned value this Pin<Ptr> points to.

\n

This is a generic method to go from &mut Pin<Pointer<T>> to Pin<&mut T>.\nIt is safe because, as part of the contract of Pin::new_unchecked,\nthe pointee cannot move after Pin<Pointer<T>> got created.\n“Malicious” implementations of Pointer::DerefMut are likewise\nruled out by the contract of Pin::new_unchecked.

\n

This method is useful when doing multiple calls to functions that consume the\npinning pointer.

\n
§Example
\n
use std::pin::Pin;\n\nimpl Type {\n    fn method(self: Pin<&mut Self>) {\n        // do something\n    }\n\n    fn call_method_twice(mut self: Pin<&mut Self>) {\n        // `method` consumes `self`, so reborrow the `Pin<&mut Self>` via `as_mut`.\n        self.as_mut().method();\n        self.as_mut().method();\n    }\n}
1.84.0 (const: unstable) · Source

pub fn as_deref_mut(\n self: Pin<&mut Pin<Ptr>>,\n) -> Pin<&mut <Ptr as Deref>::Target>
where\n Ptr: DerefMut,

Gets Pin<&mut T> to the underlying pinned value from this nested Pin-pointer.

\n

This is a generic method to go from Pin<&mut Pin<Pointer<T>>> to Pin<&mut T>. It is\nsafe because the existence of a Pin<Pointer<T>> ensures that the pointee, T, cannot\nmove in the future, and this method does not enable the pointee to move. “Malicious”\nimplementations of Ptr::DerefMut are likewise ruled out by the contract of\nPin::new_unchecked.

\n
1.33.0 · Source

pub fn set(&mut self, value: <Ptr as Deref>::Target)
where\n <Ptr as Deref>::Target: Sized,

Assigns a new value to the memory location pointed to by the Pin<Ptr>.

\n

This overwrites pinned data, but that is okay: the original pinned value’s destructor gets\nrun before being overwritten and the new value is also a valid value of the same type, so\nno pinning invariant is violated. See the pin module documentation\nfor more information on how this upholds the pinning invariants.

\n
§Example
\n
use std::pin::Pin;\n\nlet mut val: u8 = 5;\nlet mut pinned: Pin<&mut u8> = Pin::new(&mut val);\nprintln!(\"{}\", pinned); // 5\npinned.set(10);\nprintln!(\"{}\", pinned); // 10
",0,"futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<Ptr> Pin<Ptr>
where\n Ptr: Deref,

1.39.0 (const: 1.84.0) · Source

pub const unsafe fn into_inner_unchecked(pin: Pin<Ptr>) -> Ptr

Unwraps this Pin<Ptr>, returning the underlying Ptr.

\n
§Safety
\n

This function is unsafe. You must guarantee that you will continue to\ntreat the pointer Ptr as pinned after you call this function, so that\nthe invariants on the Pin type can be upheld. If the code using the\nresulting Ptr does not continue to maintain the pinning invariants that\nis a violation of the API contract and may lead to undefined behavior in\nlater (safe) operations.

\n

Note that you must be able to guarantee that the data pointed to by Ptr\nwill be treated as pinned all the way until its drop handler is complete!

\n

For more information, see the pin module docs

\n

If the underlying data is Unpin, Pin::into_inner should be used\ninstead.

\n
",0,"futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr> Pointer for Pin<Ptr>
where\n Ptr: Pointer,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
","Pointer","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<P> Stream for Pin<P>
where\n P: DerefMut + Unpin,\n P::Target: Stream,

Source§

type Item = <<P as Deref>::Target as Stream>::Item

Values yielded by the stream.
Source§

fn poll_next(\n self: Pin<&mut Self>,\n cx: &mut Context<'_>,\n) -> Poll<Option<Self::Item>>

Attempt to pull out the next value of this stream, registering the\ncurrent task for wakeup if the value is not yet available, and returning\nNone if the stream is exhausted. Read more
Source§

fn size_hint(&self) -> (usize, Option<usize>)

Returns the bounds on the remaining length of the stream. Read more
","Stream","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr, U> CoerceUnsized<Pin<U>> for Pin<Ptr>

","CoerceUnsized>","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr> Copy for Pin<Ptr>
where\n Ptr: Copy,

","Copy","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
Source§

impl<Ptr> DerefPure for Pin<Ptr>
where\n Ptr: DerefPure,

","DerefPure","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<Ptr, U> DispatchFromDyn<Pin<U>> for Pin<Ptr>

","DispatchFromDyn>","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.41.0 · Source§

impl<Ptr> Eq for Pin<Ptr>
where\n Ptr: Deref,\n <Ptr as Deref>::Target: Eq,

","Eq","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"],["
1.33.0 · Source§

impl<T> PinCoerceUnsized for Pin<T>
where\n T: PinCoerceUnsized,

","PinCoerceUnsized","futures_core::future::BoxFuture","futures_core::future::LocalBoxFuture","futures_core::stream::BoxStream","futures_core::stream::LocalBoxStream"]]]]); if (window.register_type_impls) { window.register_type_impls(type_impls); } else { window.pending_type_impls = type_impls; } })() //{"start":55,"fragment_lengths":[107837]}