Trait MultipleArgsCollection

Source
pub trait MultipleArgsCollection<T>: ToArgs
where T: ToArgs,
{ }
Expand description

Generic Marker for Collections of ToArgs

Each element of the collection can produce multiple args.

Implementations on Foreign Types§

Source§

impl<T> MultipleArgsCollection<T> for Vec<T>
where T: ToArgs,

Source§

impl<T, const N: usize> MultipleArgsCollection<T> for [T; N]
where T: ToArgs,

Implementors§

Source§

impl<T> MultipleArgsCollection<T> for T
where T: ToArgs,