Struct IoTryWriter

Source
pub struct IoTryWriter<F1, F2>(/* private fields */);
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) -> Self
where 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,

Source§

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

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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>

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

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

Flushes 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, args: 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 Self
where Self: Sized,

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

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

Source§

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

Auto Trait Implementations§

§

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

§

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

§

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 T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 T
where 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 T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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.