pub trait AppendBack: Append {
// Provided method
fn append_back(&mut self, val: &mut Self) { ... }
}Expand description
Provided Methods§
Sourcefn append_back(&mut self, val: &mut Self)
fn append_back(&mut self, val: &mut Self)
Moves data out of val and onto the back of this collection.
Invoking this method should make val empty without freeing any resources.
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.