1.0.0[−][src]Struct async_std::process::Output
This is supported on
unstable
only.The output of a finished process.
This is returned in a Result by either the output
method of a
Command
, or the wait_with_output
method of a Child
process.
Fields
status: ExitStatus
The status (exit code) of the process.
stdout: Vec<u8, Global>
The data that the process wrote to stdout.
stderr: Vec<u8, Global>
The data that the process wrote to stderr.
Trait Implementations
impl Clone for Output
[src][+]
impl Debug for Output
1.7.0[src][+]
impl Eq for Output
[src]
impl PartialEq<Output> for Output
[src][+]
impl StructuralEq for Output
[src]
impl StructuralPartialEq for Output
[src]
Auto Trait Implementations
impl RefUnwindSafe for Output
[src]
impl Send for Output
[src]
impl Sync for Output
[src]
impl Unpin for Output
[src]
impl UnwindSafe for Output
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,