pub trait Reader {
    // Required method
    fn reader(&self, starting_at: usize) -> Cursor<'_>;
}
Expand description

A cursor-like trait to read SSH-encoded things.

Required Methods§

source

fn reader(&self, starting_at: usize) -> Cursor<'_>

Create an SSH reader for self.

Implementations on Foreign Types§

source§

impl Reader for [u8]

source§

fn reader(&self, starting_at: usize) -> Cursor<'_>

Implementors§