Trait ExtendWithElements

Source
pub trait ExtendWithElements<T> {
    // Required method
    fn extend_with_elements<E: Extend<T>>(self, dest: &mut E);
}

Required Methods§

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<'a> ExtendWithElements<AnyElement<'a>> for AnyElement<'a>

Source§

impl<'a, T, U> ExtendWithElements<T> for Element<'a, U>
where U: ElementType + 'a, T: From<Element<'a, U>>,

Source§

impl<T, U, I> ExtendWithElements<T> for I
where T: From<U>, I: IntoIterator<Item = U>,