Struct ssh2::ReadWindow [] [src]

pub struct ReadWindow {
    pub remaining: u32,
    pub available: u32,
    pub window_size_initial: u32,
}

Description of the read window as returned by Channel::read_window

Fields

The number of bytes which the remote end may send without overflowing the window limit.

The number of bytes actually available to be read.

The window_size_initial as defined by the channel open request

Trait Implementations

impl Copy for ReadWindow
[src]

impl Clone for ReadWindow
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more