pub struct FormattedList<'a, W, I>{ /* private fields */ }Expand description
The Writeable implementation that is returned by ListFormatter::format. See
the writeable crate for how to consume this.
Trait Implementations§
Source§impl<'a, W, I> Debug for FormattedList<'a, W, I>
 
impl<'a, W, I> Debug for FormattedList<'a, W, I>
Source§impl<'a, W, I> Display for FormattedList<'a, W, I>
 
impl<'a, W, I> Display for FormattedList<'a, W, I>
Source§impl<'a, W, I> Writeable for FormattedList<'a, W, I>
 
impl<'a, W, I> Writeable for FormattedList<'a, W, I>
Source§fn write_to_parts<V>(&self, sink: &mut V) -> Result<(), Error>where
    V: PartsWrite + ?Sized,
 
fn write_to_parts<V>(&self, sink: &mut V) -> Result<(), Error>where
    V: PartsWrite + ?Sized,
Write bytes and 
Part annotations to the given sink. Errors from the
sink are bubbled up. The default implementation delegates to write_to,
and doesn’t produce any Part annotations.Source§fn writeable_length_hint(&self) -> LengthHint
 
fn writeable_length_hint(&self) -> LengthHint
Returns a hint for the number of UTF-8 bytes that will be written to the sink. Read more
Auto Trait Implementations§
impl<'a, W, I> Freeze for FormattedList<'a, W, I>where
    I: Freeze,
impl<'a, W, I> RefUnwindSafe for FormattedList<'a, W, I>where
    I: RefUnwindSafe,
impl<'a, W, I> !Send for FormattedList<'a, W, I>
impl<'a, W, I> !Sync for FormattedList<'a, W, I>
impl<'a, W, I> Unpin for FormattedList<'a, W, I>where
    I: Unpin,
impl<'a, W, I> UnwindSafe for FormattedList<'a, W, 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
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more