Enum pty::prelude::SlaveError [] [src]

pub enum SlaveError {
    BadDescriptor(DescriptorError),
    Dup2Error,
}

The enum SlaveError defines the possible errors from constructor Slave.

Variants

Trait Implementations

impl Clone for SlaveError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SlaveError
[src]

impl Debug for SlaveError
[src]

Formats the value using the given formatter.

impl Display for SlaveError
[src]

The function fmt formats the value using the given formatter.

impl Error for SlaveError
[src]

The function description returns a short description of the error.

The function cause returns the lower-level cause of this error, if any.