Struct icu_list::list_formatter::FormattedList
source · pub struct FormattedList<'a, W: Writeable + 'a, I: Iterator<Item = W> + Clone + 'a> {
formatter: &'a ListFormatter,
values: I,
}
Expand description
The Writeable
implementation that is returned by ListFormatter::format
. See
the writeable
crate for how to consume this.
Fields§
§formatter: &'a ListFormatter
§values: I
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
source§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.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