#[doc(hidden)]trait SpecExtend<I: IntoIterator> {
// Required method
fn spec_extend(&mut self, iter: I);
}Expand description
An intermediate trait for specialization of Extend.
Required Methods§
Sourcefn spec_extend(&mut self, iter: I)
fn spec_extend(&mut self, iter: I)
Extends self with the contents of the given iterator.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".