pub trait IOStreamImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_input_stream(&self) -> InputStream { ... }
fn parent_output_stream(&self) -> OutputStream { ... }
fn parent_close(
&self,
cancellable: Option<&Cancellable>,
) -> Result<(), Error> { ... }
}
Provided Methods§
fn parent_input_stream(&self) -> InputStream
fn parent_output_stream(&self) -> OutputStream
fn parent_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.