pub struct FormattedHelloWorld<'l> {
data: &'l HelloWorld<'l>,
}Expand description
A formatted hello world message. Implements Writeable.
For an example, see HelloWorldFormatter.
Fields§
§data: &'l HelloWorld<'l>Implementations§
Source§impl FormattedHelloWorld<'_>
impl FormattedHelloWorld<'_>
Trait Implementations§
Source§impl<'l> Debug for FormattedHelloWorld<'l>
impl<'l> Debug for FormattedHelloWorld<'l>
Source§impl Display for FormattedHelloWorld<'_>
This trait is implemented for compatibility with fmt!.
To create a string, Writeable::write_to_string is usually more efficient.
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 Writeable for FormattedHelloWorld<'_>
impl Writeable for FormattedHelloWorld<'_>
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_parts<S: PartsWrite + ?Sized>(&self, sink: &mut S) -> Result
fn write_to_parts<S: PartsWrite + ?Sized>(&self, sink: &mut S) -> 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 writeable_borrow(&self) -> Option<&str>
fn writeable_borrow(&self) -> Option<&str>
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> UnsafeUnpin 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