Trait list_tools::ToList

source ·
pub trait ToList<T>
where T: Clone,
{ // Required method fn to_list(self) -> List<T> ; }

Required Methods§

source

fn to_list(self) -> List<T>

Implementations on Foreign Types§

source§

impl<T: Clone> ToList<T> for &[T]

source§

fn to_list(self) -> List<T>

source§

impl<T: Clone> ToList<T> for Vec<T>

source§

fn to_list(self) -> List<T>

source§

impl<T: Clone> ToList<T> for HashSet<T>

source§

fn to_list(self) -> List<T>

Implementors§