pub struct IoTryWriter<F1, F2>(_, _);
Expand description

A writer that uses write_bytes and has both write and flush methods.

It calls write_bytes for each formatted chunk like the FmtTryWriter, but provides write and flush methods that allows you to use BufWriter, LineWriter etc.

Write function can return either (), usize, io::Result<()>, io::Result<usize>, Result<(), ffi::NulError> or Result<usize, ffi::NulError>.

The usize itself or in Result indicates how many bytes were written. write_fmt method that is used by write! and writeln! will continuously call write until there is no more data to be written or a non-ErrorKind::Interrupted kind is returned.

Flush function can return either () or io::Result<()>.

Writer propagates error to the caller if the write function returns Result::Err.

Implementations§

source§

impl<F1, F2> IoTryWriter<F1, F2>where F1: WriteStr, F2: Flush,

source

pub fn new(write: F1, flush: F2) -> Self

Creates a new IoTryWriter from an object that implements WriteBytes and object that implements Flush.

source§

impl<F1> IoTryWriter<F1, ()>where F1: WriteStr,

source

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

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

source§

impl<F1> IoTryWriter<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, F2: Clone> Clone for IoTryWriter<F1, F2>

source§

fn clone(&self) -> IoTryWriter<F1, F2>

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, F2: Debug> Debug for IoTryWriter<F1, F2>

source§

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

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

impl<F1, F2> Flush for IoTryWriter<F1, F2>where F2: Flush, F2::Output: IntoIoFlushResult,

§

type Output = Result<(), Error>

The resulting type after flushing.
source§

fn flush(&mut self) -> Self::Output

Performs flush.
source§

impl<F1: PartialEq, F2: PartialEq> PartialEq<IoTryWriter<F1, F2>> for IoTryWriter<F1, F2>

source§

fn eq(&self, other: &IoTryWriter<F1, F2>) -> 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, F2> Write for IoTryWriter<F1, F2>where Self: WriteBytes<Output = Result<usize>> + Flush<Output = Result<()>>,

source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

fn flush(&mut self) -> Result<()>

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · source§

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

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Selfwhere Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more
source§

impl<F1, F2> WriteBytes for IoTryWriter<F1, F2>where F1: WriteBytes, F1::Output: IntoIoWriteResult,

§

type Output = Result<usize, Error>

The resulting type after writing.
source§

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

Performs byte writing.
source§

impl<F1: Copy, F2: Copy> Copy for IoTryWriter<F1, F2>

source§

impl<F1: Eq, F2: Eq> Eq for IoTryWriter<F1, F2>

source§

impl<F1, F2> StructuralEq for IoTryWriter<F1, F2>

source§

impl<F1, F2> StructuralPartialEq for IoTryWriter<F1, F2>

Auto Trait Implementations§

§

impl<F1, F2> RefUnwindSafe for IoTryWriter<F1, F2>where F1: RefUnwindSafe, F2: RefUnwindSafe,

§

impl<F1, F2> Send for IoTryWriter<F1, F2>where F1: Send, F2: Send,

§

impl<F1, F2> Sync for IoTryWriter<F1, F2>where F1: Sync, F2: Sync,

§

impl<F1, F2> Unpin for IoTryWriter<F1, F2>where F1: Unpin, F2: Unpin,

§

impl<F1, F2> UnwindSafe for IoTryWriter<F1, F2>where F1: UnwindSafe, F2: 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.