pub trait SingleArgOrCollection<T>: IntoArgswhere
    T: Into<BulkString>,
{ type IntoIter: Iterator<Item = T>; fn into_iter(self) -> Self::IntoIter; }
Expand description

Marker for collections of single items (directly convertible to BulkStrings) of IntoArgs

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors