Struct icu_list::FormattedList
source · pub struct FormattedList<'a, W: Writeable + 'a, I: Iterator<Item = W> + Clone + 'a> { /* 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: Debug + Writeable + 'a, I: Debug + Iterator<Item = W> + Clone + 'a> Debug for FormattedList<'a, W, I>
impl<'a, W: Debug + Writeable + 'a, I: Debug + Iterator<Item = W> + Clone + 'a> Debug for FormattedList<'a, W, I>
source§impl<'a, W: Writeable + 'a, I: Iterator<Item = W> + Clone + 'a> Display for FormattedList<'a, W, I>
impl<'a, W: Writeable + 'a, I: Iterator<Item = W> + Clone + 'a> Display for FormattedList<'a, W, I>
source§impl<'a, W: Writeable + 'a, I: Iterator<Item = W> + Clone + 'a> Writeable for FormattedList<'a, W, I>
impl<'a, W: Writeable + 'a, I: Iterator<Item = W> + Clone + 'a> Writeable for FormattedList<'a, W, I>
source§fn write_to_parts<V: PartsWrite + ?Sized>(&self, sink: &mut V) -> Result
fn write_to_parts<V: PartsWrite + ?Sized>(&self, sink: &mut V) -> Result
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
§fn write_to<W>(&self, sink: &mut W) -> Result<(), Error>
fn write_to<W>(&self, sink: &mut W) -> Result<(), Error>
Writes a string to the given sink. Errors from the sink are bubbled up.
The default implementation delegates to
write_to_parts
, and discards any
Part
annotations.§fn write_to_string(&self) -> Cow<'_, str>
fn write_to_string(&self) -> Cow<'_, str>
Creates a new
String
with the data from this Writeable
. Like ToString
,
but smaller and faster. Read moreAuto 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