[][src]Enum rcore::Writer

pub enum Writer {
    // some variants omitted
}

This union acts as thin abstraction layer over over input streams. Its goal is to allow allow seamingless redirection of output to either a buffer, a file or even terminal IO.

Methods

impl Writer[src]

pub fn new_write(out: Box<dyn Write>) -> Self[src]

Creates a new Writer backed by object that implements Write.

pub fn new_buf() -> Self[src]

Returns a new buffer based Writer.

pub fn bytes(self) -> Option<Vec<u8>>[src]

This function consumes the Writer object, it returns the data stored there if the object is buffer based.

pub fn utf8_string(self) -> Option<String>[src]

This function consumes the Writer object, it returns UTF-8 String representation of the data stored there if it is buffer. based and the buffer holds UTF-8 data.

pub fn bytes_ref(&self) -> Option<&Vec<u8>>[src]

This function returns a reference to the data stored in respective Writer if the object is buffer based.

pub fn bytes_mut(&mut self) -> Option<&mut Vec<u8>>[src]

This function returns a mutable reference to the data stored in respective Writer if the object is buffer. based.

Trait Implementations

impl Default for Writer[src]

impl Write for Writer[src]

Auto Trait Implementations

impl !RefUnwindSafe for Writer

impl !Send for Writer

impl !Sync for Writer

impl Unpin for Writer

impl !UnwindSafe for Writer

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.