pub trait PipelineTargetVec<T> {
// Required method
fn xtend<I: IntoIterator<Item = T>>(self, iter: I) -> Self;
}Required Methods§
Sourcefn xtend<I: IntoIterator<Item = T>>(self, iter: I) -> Self
fn xtend<I: IntoIterator<Item = T>>(self, iter: I) -> Self
Similar to Vec::extend but returns Self
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.