pub trait IOStreamImplExt: ObjectSubclass {
    // Required methods
    fn parent_input_stream(&self) -> InputStream;
    fn parent_output_stream(&self) -> OutputStream;
    fn parent_close(
        &self,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error>;
}

Required Methods§

Implementors§

source§

impl<T> IOStreamImplExt for Twhere T: IOStreamImpl,