pub trait IInputStream_Impl: Sized + IClosable_Impl {
    // Required method
    fn ReadAsync(
        &self,
        buffer: Option<&IBuffer>,
        count: u32,
        options: InputStreamOptions
    ) -> Result<IAsyncOperationWithProgress<IBuffer, u32>, Error>;
}

Required Methods§

Implementors§