Trait BufferVecItem

Source
pub trait BufferVecItem:
    Copy
    + Sized
    + Default
    + Debug { }
Expand description

The type that could be the item of the BufferVec

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> BufferVecItem for T
where T: Copy + Sized + Default + Debug,