Trait sourceview5::prelude::BufferedInputStreamExt
source · pub trait BufferedInputStreamExt: IsA<BufferedInputStream> + Sealed + 'static {
// Provided methods
fn fill(
&self,
count: isize,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<isize, Error> { ... }
fn fill_async<P>(
&self,
count: isize,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<isize, Error>) + 'static { ... }
fn fill_future(
&self,
count: isize,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<isize, Error>>>> { ... }
fn available(&self) -> usize { ... }
fn buffer_size(&self) -> usize { ... }
fn peek_buffer(&self) -> Vec<u8> { ... }
fn read_byte(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<i32, Error> { ... }
fn set_buffer_size(&self, size: usize) { ... }
fn connect_buffer_size_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn fill( &self, count: isize, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<isize, Error>
fn fill_async<P>( &self, count: isize, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn fill_future( &self, count: isize, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<isize, Error>>>>
fn available(&self) -> usize
fn buffer_size(&self) -> usize
fn peek_buffer(&self) -> Vec<u8>
fn read_byte( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<i32, Error>
fn set_buffer_size(&self, size: usize)
fn connect_buffer_size_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.