pub struct DisplayList<I> {
pub(crate) iter: I,
}Expand description
Has a Display implementation if the elements of the iterator inside have
one. This will render them surrounded by [ brackets and separated by ,
comma and space
Fields§
§iter: ITrait Implementations§
Source§impl<I: Clone> Clone for DisplayList<I>
impl<I: Clone> Clone for DisplayList<I>
Source§fn clone(&self) -> DisplayList<I>
fn clone(&self) -> DisplayList<I>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<I> Freeze for DisplayList<I>where
I: Freeze,
impl<I> RefUnwindSafe for DisplayList<I>where
I: RefUnwindSafe,
impl<I> Send for DisplayList<I>where
I: Send,
impl<I> Sync for DisplayList<I>where
I: Sync,
impl<I> Unpin for DisplayList<I>where
I: Unpin,
impl<I> UnwindSafe for DisplayList<I>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more