logo
pub trait IOStreamImplExt: ObjectSubclass {
    fn parent_input_stream(&self, stream: &Self::Type) -> InputStream;
    fn parent_output_stream(&self, stream: &Self::Type) -> OutputStream;
    fn parent_close(
        &self,
        stream: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error>; }

Required methods

Implementors