Trait ffsend_api::pipe::prelude::PipeRead[][src]

pub trait PipeRead<P>: Read where
    P: Pipe
{ fn new(pipe: P, inner: Box<dyn Read>) -> Self; }
Expand description

A reader wrapping another reader, to encrypt or decrypt data read from it.

Required methods

Wrap the given inner reader, transform data using crypt.

Implementors