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
source
fn parent_input_stream(&self, stream: &Self::Type) -> InputStream
source
fn parent_output_stream(&self, stream: &Self::Type) -> OutputStream
sourcefn parent_close(