Struct icu::list::FormattedList
source · 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>where
I: Send,
impl<'a, W, I> Sync for FormattedList<'a, W, I>where
I: Sync,
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