Trait PipelineTargetVec

Source
pub trait PipelineTargetVec<T> {
    // Required method
    fn xtend<I: IntoIterator<Item = T>>(self, iter: I) -> Self;
}

Required Methods§

Source

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.

Implementors§

Source§

impl<T, T2> PipelineTargetVec<T> for T2
where T2: AsMut<Vec<T>>,