pub struct List<I>(pub I);Expand description
Vk API List helper
Serialize any iterable struct with ToString items to string separated by comma.
Example:
use vkclient::List;
assert_eq!(List(vec![1, 2, 3]).to_string(), "1,2,3".to_string());Tuple Fields
0: ITrait Implementations
sourceimpl<Item, Iter> From<Iter> for List<Iter>where
Item: ToString,
for<'a> &'a Iter: IntoIterator<Item = &'a Item>,
impl<Item, Iter> From<Iter> for List<Iter>where
Item: ToString,
for<'a> &'a Iter: IntoIterator<Item = &'a Item>,
sourceimpl<I: Ord> Ord for List<I>
impl<I: Ord> Ord for List<I>
1.21.0 · sourcefn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<I: PartialOrd> PartialOrd<List<I>> for List<I>
impl<I: PartialOrd> PartialOrd<List<I>> for List<I>
sourcefn partial_cmp(&self, other: &List<I>) -> Option<Ordering>
fn partial_cmp(&self, other: &List<I>) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresourceimpl<Item, Iter> Serialize for List<Iter>where
Item: ToString,
for<'a> &'a Iter: IntoIterator<Item = &'a Item>,
impl<Item, Iter> Serialize for List<Iter>where
Item: ToString,
for<'a> &'a Iter: IntoIterator<Item = &'a Item>,
sourceimpl<Item, Iter> ToString for List<Iter>where
Item: ToString,
for<'a> &'a Iter: IntoIterator<Item = &'a Item>,
impl<Item, Iter> ToString for List<Iter>where
Item: ToString,
for<'a> &'a Iter: IntoIterator<Item = &'a Item>,
impl<I: Copy> Copy for List<I>
impl<I: Eq> Eq for List<I>
impl<I> StructuralEq for List<I>
impl<I> StructuralPartialEq for List<I>
Auto Trait Implementations
impl<I> RefUnwindSafe for List<I>where
I: RefUnwindSafe,
impl<I> Send for List<I>where
I: Send,
impl<I> Sync for List<I>where
I: Sync,
impl<I> Unpin for List<I>where
I: Unpin,
impl<I> UnwindSafe for List<I>where
I: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.