logo
pub trait InputStreamImpl: ObjectImpl + InputStreamImplExt + Send {
    fn read(
        &self,
        stream: &Self::Type,
        buffer: &mut [u8],
        cancellable: Option<&Cancellable>
    ) -> Result<usize, Error> { ... } fn close(
        &self,
        stream: &Self::Type,
        cancellable: Option<&Cancellable>
    ) -> Result<(), Error> { ... } fn skip(
        &self,
        stream: &Self::Type,
        count: usize,
        cancellable: Option<&Cancellable>
    ) -> Result<usize, Error> { ... } }

Provided methods

Implementors