[][src]Trait flatk::PushArrayToVec

pub trait PushArrayToVec<N> where
    N: Array<Self>,
    Self: Sized
{ fn push_to_vec(element: N::Array, set: &mut Vec<Self>); }

Required methods

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.

Loading content...

Implementors

impl<T: Clone, N: Array<T>> PushArrayToVec<N> for T[src]

Loading content...