[][src]Struct notes::console_output::ConsoleOutput

pub struct ConsoleOutput {
    pub stdout: String,
    pub stderr: String,
}

Fields

stdout: Stringstderr: String

Implementations

impl ConsoleOutput[src]

pub fn new(out: String, err: String) -> Self[src]

pub fn empty() -> Self[src]

pub fn from_stdout(out: &str) -> Self[src]

pub fn from_stderr(out: &str) -> Self[src]

pub fn append(&mut self, out: ConsoleOutput)[src]

pub fn append_command_output(&mut self, out: CommandOutput)[src]

pub fn append_stdout(&mut self, out: &str)[src]

pub fn append_stderr(&mut self, out: &str)[src]

Trait Implementations

impl Debug for ConsoleOutput[src]

impl Default for ConsoleOutput[src]

Auto Trait Implementations

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,