Trait sourceview5::prelude::IOStreamExt
source · pub trait IOStreamExt: IsA<IOStream> + Sealed + 'static {
// Provided methods
fn clear_pending(&self) { ... }
fn close(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<(), Error> { ... }
fn close_async<P>(
&self,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<(), Error>) + 'static { ... }
fn close_future(
&self,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<(), Error>>>> { ... }
fn input_stream(&self) -> InputStream { ... }
fn output_stream(&self) -> OutputStream { ... }
fn has_pending(&self) -> bool { ... }
fn is_closed(&self) -> bool { ... }
fn set_pending(&self) -> Result<(), Error> { ... }
fn connect_closed_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn clear_pending(&self)
fn close( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<(), Error>
fn close_async<P>( &self, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn close_future( &self, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
fn input_stream(&self) -> InputStream
fn output_stream(&self) -> OutputStream
fn has_pending(&self) -> bool
fn is_closed(&self) -> bool
fn set_pending(&self) -> Result<(), Error>
fn connect_closed_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.