pub trait PushArrayToVec<N>{
// Required method
fn push_to_vec(element: N::Array, set: &mut Vec<Self>);
}Required Methods§
Sourcefn push_to_vec(element: N::Array, set: &mut Vec<Self>)
fn push_to_vec(element: N::Array, set: &mut Vec<Self>)
This method tells this type how it can be pushed to a Vec as an array.
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.