Struct paralegal_spdg::utils::DisplayList
source · pub struct DisplayList<I> {
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: I
Trait 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> 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