Trait gio::subclass::prelude::OutputStreamImplExt
source · pub trait OutputStreamImplExt: Sealed + ObjectSubclass {
// Provided methods
fn parent_write(
&self,
buffer: &[u8],
cancellable: Option<&Cancellable>
) -> Result<usize, Error> { ... }
fn parent_close(
&self,
cancellable: Option<&Cancellable>
) -> Result<(), Error> { ... }
fn parent_flush(
&self,
cancellable: Option<&Cancellable>
) -> Result<(), Error> { ... }
fn parent_splice(
&self,
input_stream: &InputStream,
flags: OutputStreamSpliceFlags,
cancellable: Option<&Cancellable>
) -> Result<usize, Error> { ... }
}
Provided Methods§
fn parent_write( &self, buffer: &[u8], cancellable: Option<&Cancellable> ) -> Result<usize, Error>
fn parent_close(&self, cancellable: Option<&Cancellable>) -> Result<(), Error>
fn parent_flush(&self, cancellable: Option<&Cancellable>) -> Result<(), Error>
fn parent_splice( &self, input_stream: &InputStream, flags: OutputStreamSpliceFlags, cancellable: Option<&Cancellable> ) -> Result<usize, Error>
Object Safety§
This trait is not object safe.