[][src]Struct easy_io::output_writer::OutputWriter

pub struct OutputWriter<W: Write> { /* fields omitted */ }

Methods

impl OutputWriter<Stdout>[src]

pub fn new() -> Self[src]

impl OutputWriter<File>[src]

pub fn from_file(path: &str) -> Self[src]

impl<W: Write> OutputWriter<W>[src]

pub fn from_writer(writer: W) -> Self[src]

pub fn print<T: Display>(&mut self, t: T)[src]

pub fn prints<T: Display>(&mut self, t: T)[src]

pub fn println<T: Display>(&mut self, t: T)[src]

Trait Implementations

impl<W: Write> Drop for OutputWriter<W>[src]

impl<W: Write> Write for OutputWriter<W>[src]

Auto Trait Implementations

impl<W> Send for OutputWriter<W> where
    W: Send

impl<W> Sync for OutputWriter<W> where
    W: Sync

impl<W> Unpin for OutputWriter<W> where
    W: Unpin

impl<W> UnwindSafe for OutputWriter<W> where
    W: UnwindSafe

impl<W> RefUnwindSafe for OutputWriter<W> where
    W: RefUnwindSafe

Blanket Implementations

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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