Struct pseudoterm::OpenptyOptions[][src]

pub struct OpenptyOptions {
    pub size: Option<Winsize>,
    pub nonblock: bool,
}

Configurable options for opening PTYs

Fields

Methods

impl OpenptyOptions
[src]

Same as default()

Chainable function to set size

Chainable function to set the master file to be nonblocking

Trait Implementations

impl Clone for OpenptyOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OpenptyOptions
[src]

Formats the value using the given formatter. Read more

impl Default for OpenptyOptions
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations