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

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

Required Methods§

source

fn reader<'a>(&'a self, starting_at: usize) -> Position<'a>

Create an SSH reader for self.

Implementations on Foreign Types§

source§

impl Reader for [u8]

source§

fn reader<'a>(&'a self, starting_at: usize) -> Position<'a>

source§

impl Reader for CryptoVec

source§

fn reader<'a>(&'a self, starting_at: usize) -> Position<'a>

Implementors§