pub trait VectorWritingFrame<'a, T>where
T: 'static + AtomBody + Sized + Copy,
Self: WritingFrame<'a> + WritingFrameExt<'a, Vector<T>>,{
// Provided methods
fn push(&mut self, value: T) -> Result<(), ()> { ... }
fn append(&mut self, slice: &[T]) -> Result<(), ()> { ... }
}Expand description
Extension for WritingFrame and
WritingFrameExt for vectors.
See the module documentation for more information.
Provided 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.