pub trait IOStreamImpl: ObjectImpl + IOStreamImplExt + Send {
    // Provided methods
    fn input_stream(&self, stream: &Self::Type) -> InputStream { ... }
    fn output_stream(&self, stream: &Self::Type) -> OutputStream { ... }
    fn close(
        &self,
        stream: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error> { ... }
}

Provided Methods§

source

fn input_stream(&self, stream: &Self::Type) -> InputStream

source

fn output_stream(&self, stream: &Self::Type) -> OutputStream

source

fn close( &self, stream: &Self::Type, cancellable: Option<&Cancellable> ) -> Result<(), Error>

Implementors§