pub trait IOStreamImpl: ObjectImpl + IOStreamImplExt + Send {
    // Provided methods
    fn input_stream(&self) -> InputStream { ... }
    fn output_stream(&self) -> OutputStream { ... }
    fn close(&self, cancellable: Option<&Cancellable>) -> Result<(), Error> { ... }
}

Provided Methods§

Implementors§