pub trait Data:
Clone
+ Debug
+ Send
+ Sized
+ 'static {
type Vec: ListVec<Self>;
type DynamicType;
// Required method
fn new_vec(_type: Self::DynamicType) -> Self::Vec;
}Required Associated Types§
type Vec: ListVec<Self>
type DynamicType
Required Methods§
fn new_vec(_type: Self::DynamicType) -> Self::Vec
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.