Struct ssh2::WriteWindow [] [src]

pub struct WriteWindow {
    pub remaining: u32,
    pub window_size_initial: u32,
}

Description of the write window as returned by Channel::write_window

Fields

remaining: u32

The number of bytes which may be safely written on the channel without blocking.

window_size_initial: u32

The window_size_initial as defined by the channel open request

Trait Implementations

impl Clone for WriteWindow
[src]

fn clone(&self) -> WriteWindow

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for WriteWindow
[src]