Trait libhelium::subclass::prelude::IOStreamImplExt

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>

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> IOStreamImplExt for T
where T: IOStreamImpl,