Skip to main content

IntoList

Trait IntoList 

Source
pub trait IntoList {
    // Required method
    fn into_list(self) -> List;
}
Expand description

Convert things into an R list.

Required Methods§

Source

fn into_list(self) -> List

Convert self into an R list wrapper.

Implementations on Foreign Types§

Source§

impl<K, V> IntoList for BTreeMap<K, V>
where K: AsRef<str>, V: IntoR,

Source§

impl<K, V> IntoList for HashMap<K, V>
where K: AsRef<str>, V: IntoR,

Source§

impl<T> IntoList for BTreeSet<T>
where T: IntoR,

Source§

impl<T> IntoList for HashSet<T>
where T: IntoR,

Source§

impl<T: IntoR> IntoList for Vec<T>

Implementors§