[][src]Struct stdio_override::StdoutOverride

pub struct StdoutOverride;

Override the File Descriptor safely. For more information please see the module-level documentation

Methods

impl StdoutOverride[src]

pub fn override_file<P: AsRef<Path>>(p: P) -> Result<StdoutOverrideGuard>[src]

Override the File Descriptor by providing a path. This uses OpenOptions with create(true) so it will fail/succeed accordingly. (won't fail if the fail already exists and will create it if it doesn't exist.)

pub fn override_raw<FD: AsRawFd>(fd: FD) -> Result<StdoutOverrideGuard>[src]

Override the File Descriptor by providing something that can be turned into a file descriptor. This will accept Sockets, Files, and even Stdio's. AsRawFd

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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 for T where
    T: ?Sized
[src]

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

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