pub trait Writer: Sized {
    fn write(&mut self, bytes: &[u8]) -> Result<()>;
}
Expand description

Writer trait which encodes the SSH binary format to various output encodings.

Required Methods

Write the given bytes to the writer.

Implementations on Foreign Types

Implementors