[][src]Enum wbuf::Output

pub enum Output {
    Standard(Stdout),
    Memory(Cursor<Vec<u8>>),
    File(File),
}

Output buffer wrapper type. Wraps stdout, a write-only memory Cursor, or a writeable file buffer.

Variants

Standard(Stdout)
Memory(Cursor<Vec<u8>>)
File(File)

Methods

impl Output[src]

pub fn stdout() -> Self[src]

Returns an Output wrapping stdout.

pub fn memory() -> Self[src]

Returns an Output wrapping a Cursor.

pub fn file(path: &str) -> Result<Self>[src]

Returns an Output wrapping a writeable file.

pub fn from_arg(arg: Option<&str>) -> Result<Self>[src]

Returns either a wrapped file buffer, or stdin, depending on the argument passed in.

The function selects the buffer following these rules:

  • No value, or the a literal "-" returns stdin.
  • Any other value returns a wrapped file buffer. The file is opened with std::fs::OpenOptions, therefore the parent folder (or the file itself, if it already exists) is required to be writable for the operation to succeed.

Trait Implementations

impl Write for Output[src]

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

Writes data into the underlying buffer.

fn flush(&mut self) -> Result<(), Error>[src]

Flushes the buffer.

Auto Trait Implementations

impl Send for Output

impl Sync for Output

impl Unpin for Output

impl UnwindSafe for Output

impl RefUnwindSafe for Output

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]