pub trait PipeRead<P>: Readwhere
P: Pipe,{
// Required method
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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.