pub trait SingleArgOrCollection<T>: IntoArgswhere
T: Into<CommandArg>,{
type IntoIter: Iterator<Item = T>;
// Required method
fn into_iter(self) -> Self::IntoIter;
}
Expand description
Marker for collections of single items (directly convertible to CommandArg
) of IntoArgs