pub trait ExtendPinned<A> {
// Required method
fn extend_pinned<T: IntoIterator<Item = A>>(self: Pin<&mut Self>, iter: T);
}
Expand description
Extend
equivalent for Pin<&mut I>
.
Required Methods§
Sourcefn extend_pinned<T: IntoIterator<Item = A>>(self: Pin<&mut Self>, iter: T)
fn extend_pinned<T: IntoIterator<Item = A>>(self: Pin<&mut Self>, iter: T)
Extend::extend
equivalent for Pin<&mut I>
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.