pub struct FmtTryWriter<F1>(_);
Expand description

A writer that calls write_str for each formatted chunk, but do not require allocations.

Write function can return either () or fmt::Result.

Writer propagates error to the caller if the write function returns Result::Err. Note that the error context will be lost, because fmt::Error does not support transmission of an error other than that an error occurred.

Implementations§

source§

impl<F1> FmtTryWriter<F1>where F1: WriteStr,

source

pub fn new(write: F1) -> Self

Creates a new FmtTryWriter from an object that implements WriteStr.

source

pub fn from_closure<F, Ts>(closure: F) -> Selfwhere F: IntoTryWriteFn<Ts, TryWriteFn = F1>,

Creates a new FmtTryWriter with a WriteStr wrapper deduced with IntoTryWriteFn by the closure signature and constructed from it.

source§

impl<F1> FmtTryWriter<F1>where Self: Write,

source

pub fn write_fmt(&mut self, args: Arguments<'_>) -> Result

Writes a formatted string into this writer, returning any error encountered.

This method is primarily used to interface with the format_args! macro, but it is rare that this should explicitly be called. The write! macro should be favored to invoke this method instead.

Trait Implementations§

source§

impl<F1: Clone> Clone for FmtTryWriter<F1>

source§

fn clone(&self) -> FmtTryWriter<F1>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<F1: Debug> Debug for FmtTryWriter<F1>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<F1: PartialEq> PartialEq<FmtTryWriter<F1>> for FmtTryWriter<F1>

source§

fn eq(&self, other: &FmtTryWriter<F1>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<F1> Write for FmtTryWriter<F1>where Self: WriteStr<Output = Result>,

source§

fn write_str(&mut self, buf: &str) -> Result

Writes a string slice into this writer, returning whether the write succeeded. Read more
1.1.0 · source§

fn write_char(&mut self, c: char) -> Result<(), Error>

Writes a char into this writer, returning whether the write succeeded. Read more
1.0.0 · source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Glue for usage of the write! macro with implementors of this trait. Read more
source§

impl<F1> WriteBytes for FmtTryWriter<F1>where F1: WriteBytes, F1::Output: IntoFmtWriteResult,

§

type Output = Result<(), Error>

The resulting type after writing.
source§

fn write_bytes(&mut self, buf: &[u8]) -> Self::Output

Performs byte writing.
source§

impl<F1> WriteStr for FmtTryWriter<F1>where F1: WriteStr, F1::Output: IntoFmtWriteResult,

§

type Output = Result<(), Error>

The resulting type after writing.
source§

fn write_str(&mut self, buf: &str) -> Self::Output

Performs byte writing.
source§

impl<F1: Copy> Copy for FmtTryWriter<F1>

source§

impl<F1: Eq> Eq for FmtTryWriter<F1>

source§

impl<F1> StructuralEq for FmtTryWriter<F1>

source§

impl<F1> StructuralPartialEq for FmtTryWriter<F1>

Auto Trait Implementations§

§

impl<F1> RefUnwindSafe for FmtTryWriter<F1>where F1: RefUnwindSafe,

§

impl<F1> Send for FmtTryWriter<F1>where F1: Send,

§

impl<F1> Sync for FmtTryWriter<F1>where F1: Sync,

§

impl<F1> Unpin for FmtTryWriter<F1>where F1: Unpin,

§

impl<F1> UnwindSafe for FmtTryWriter<F1>where F1: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.