Struct icu_provider::hello_world::FormattedHelloWorld
source · pub struct FormattedHelloWorld<'l> { /* private fields */ }
Expand description
A formatted hello world message. Implements Writeable
.
For an example, see HelloWorldFormatter
.
Trait Implementations§
source§impl<'l> Debug for FormattedHelloWorld<'l>
impl<'l> Debug for FormattedHelloWorld<'l>
source§impl Display for FormattedHelloWorld<'_>
impl Display for FormattedHelloWorld<'_>
This trait is implemented for compatibility with fmt!
.
To create a string, Writeable::write_to_string
is usually more efficient.
source§impl<'l> Writeable for FormattedHelloWorld<'l>
impl<'l> Writeable for FormattedHelloWorld<'l>
source§fn write_to<W: Write + ?Sized>(&self, sink: &mut W) -> Result
fn write_to<W: Write + ?Sized>(&self, sink: &mut W) -> Result
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.source§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 moresource§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_parts<S>(&self, sink: &mut S) -> Result<(), Error>where
S: PartsWrite + ?Sized,
fn write_to_parts<S>(&self, sink: &mut S) -> Result<(), Error>where
S: 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.Auto Trait Implementations§
impl<'l> Freeze for FormattedHelloWorld<'l>
impl<'l> RefUnwindSafe for FormattedHelloWorld<'l>
impl<'l> Send for FormattedHelloWorld<'l>
impl<'l> Sync for FormattedHelloWorld<'l>
impl<'l> Unpin for FormattedHelloWorld<'l>
impl<'l> UnwindSafe for FormattedHelloWorld<'l>
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