ArgsOrCollection

Trait ArgsOrCollection 

Source
pub trait ArgsOrCollection<T>: IntoArgs
where T: IntoArgs,
{ }
Expand description

Generic Marker for Collections of IntoArgs

Implementations on Foreign Types§

Source§

impl<T> ArgsOrCollection<T> for Vec<T>
where T: IntoArgs,

Source§

impl<T, const N: usize> ArgsOrCollection<T> for [T; N]
where T: IntoArgs,

Implementors§

Source§

impl<T> ArgsOrCollection<T> for T
where T: IntoArgs,