[]Trait libhandy4::subclass::prelude::InputStreamImplExt

pub trait InputStreamImplExt: ObjectSubclass {
    pub fn parent_read(
        &self,
        stream: &Self::Type,
        buffer: &mut [u8],
        cancellable: Option<&Cancellable>
    ) -> Result<usize, Error>;
pub fn parent_close(
        &self,
        stream: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error>;
pub fn parent_skip(
        &self,
        stream: &Self::Type,
        count: usize,
        cancellable: Option<&Cancellable>
    ) -> Result<usize, Error>; }

Required methods

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

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

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

Loading content...

Implementors

impl<T> InputStreamImplExt for T where
    T: InputStreamImpl

Loading content...