Trait IntoValueList

Source
pub trait IntoValueList<T> {
    // Required method
    fn into_value_list(self) -> Vec<Value<T>>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl<'a, T, U> IntoValueList<T> for &'a [U]
where U: IntoValue<T> + Clone,

Source§

impl<T, U> IntoValueList<T> for Vec<U>
where U: IntoValue<T>,

Source§

impl<T, U, const S: usize> IntoValueList<T> for [U; S]
where U: IntoValue<T>,

Implementors§