[][src]Struct bigbro::Stdio

pub struct Stdio(_);

A description of what you want done with one of the standard streams.

Methods

impl Stdio[src]

pub fn piped() -> Stdio[src]

A new pipe should be arranged to connect the parent and child processes.

pub fn inherit() -> Stdio[src]

The child inherits from the corresponding parent descriptor.

pub fn null() -> Stdio[src]

This stream will be ignored. This is the equivalent of attaching the stream to /dev/null

Trait Implementations

impl FromRawFd for Stdio[src]

Auto Trait Implementations

impl Sync for Stdio

impl Send for Stdio

impl Unpin for Stdio

impl RefUnwindSafe for Stdio

impl UnwindSafe for Stdio

Blanket Implementations

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

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

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