[]Trait libhandy4::subclass::prelude::OutputStreamImplExt

pub trait OutputStreamImplExt: ObjectSubclass {
    pub fn parent_write(
        &self,
        stream: &Self::Type,
        buffer: &[u8],
        cancellable: Option<&Cancellable>
    ) -> Result<usize, Error>;
pub fn parent_close(
        &self,
        stream: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error>;
pub fn parent_flush(
        &self,
        stream: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error>;
pub fn parent_splice(
        &self,
        stream: &Self::Type,
        input_stream: &InputStream,
        flags: OutputStreamSpliceFlags,
        cancellable: Option<&Cancellable>
    ) -> Result<usize, Error>; }

Required methods

pub fn parent_write(
    &self,
    stream: &Self::Type,
    buffer: &[u8],
    cancellable: Option<&Cancellable>
) -> Result<usize, Error>

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

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

pub fn parent_splice(
    &self,
    stream: &Self::Type,
    input_stream: &InputStream,
    flags: OutputStreamSpliceFlags,
    cancellable: Option<&Cancellable>
) -> Result<usize, Error>

Loading content...

Implementors

impl<T> OutputStreamImplExt for T where
    T: OutputStreamImpl

Loading content...