[][src]Struct runtime_fmt::PreparedFormat

pub struct PreparedFormat<'s, T: FormatArgs> { /* fields omitted */ }

A pre-checked format string, ready for values of a specific type to be formatted against it.

Methods

impl<'s, T: FormatArgs> PreparedFormat<'s, T>[src]

pub fn prepare(spec: &'s str) -> Result<Self, Error>[src]

Prepare a format string against a formattable type.

Once the format string has been prepared, formatting individual values will not require checking the validity of the format string over again.

pub fn newln(&mut self) -> &mut Self[src]

Append a linefeed (\n) to the end of this buffer.

pub fn with<F: FnOnce(Arguments) -> R, R>(&self, t: &T, f: F) -> R[src]

Call a function accepting Arguments with the contents of this buffer.

pub fn format(&self, t: &T) -> String[src]

Format the given value to a String.

pub fn print(&self, t: &T)[src]

Print the given value to standard output.

pub fn write_io<W: Write + ?Sized>(&self, t: &T, dest: &mut W) -> Result<()>[src]

Write the given value to an io::Write.

pub fn write_fmt<W: Write + ?Sized>(&self, t: &T, dest: &mut W) -> Result[src]

Write the given value to a fmt::Write.

Trait Implementations

impl<'s, T: FormatArgs> Clone for PreparedFormat<'s, T>[src]

Auto Trait Implementations

impl<'s, T> Send for PreparedFormat<'s, T>

impl<'s, T> Unpin for PreparedFormat<'s, T>

impl<'s, T> Sync for PreparedFormat<'s, T>

impl<'s, T> UnwindSafe for PreparedFormat<'s, T>

impl<'s, T> RefUnwindSafe for PreparedFormat<'s, T>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]