pub trait IOStreamImpl:
Send
+ ObjectImpl
+ ObjectSubclass{
// Provided methods
fn input_stream(&self) -> InputStream { ... }
fn output_stream(&self) -> OutputStream { ... }
fn close(&self, cancellable: Option<&Cancellable>) -> Result<(), Error> { ... }
}
Provided Methods§
fn input_stream(&self) -> InputStream
fn output_stream(&self) -> OutputStream
fn close(&self, cancellable: Option<&Cancellable>) -> Result<(), Error>
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.