Trait sourceview5::prelude::DataInputStreamExtManual
source · pub trait DataInputStreamExtManual: Sealed + IsA<DataInputStream> + 'static {
// Provided methods
fn read_line<P>(&self, cancellable: Option<&P>) -> Result<Slice<u8>, Error>
where P: IsA<Cancellable> { ... }
fn read_line_async<P, Q>(
&self,
io_priority: Priority,
cancellable: Option<&P>,
callback: Q,
)
where P: IsA<Cancellable>,
Q: FnOnce(Result<Slice<u8>, Error>) + 'static { ... }
fn read_line_future(
&self,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<Slice<u8>, Error>>>> { ... }
fn read_line_utf8<P>(
&self,
cancellable: Option<&P>,
) -> Result<Option<GString>, Error>
where P: IsA<Cancellable> { ... }
fn read_line_utf8_async<P, Q>(
&self,
io_priority: Priority,
cancellable: Option<&P>,
callback: Q,
)
where P: IsA<Cancellable>,
Q: FnOnce(Result<Option<GString>, Error>) + 'static { ... }
fn read_line_utf8_future(
&self,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<Option<GString>, Error>>>> { ... }
fn read_upto<P>(
&self,
stop_chars: &[u8],
cancellable: Option<&P>,
) -> Result<Slice<u8>, Error>
where P: IsA<Cancellable> { ... }
fn read_upto_async<P, Q>(
&self,
stop_chars: &[u8],
io_priority: Priority,
cancellable: Option<&P>,
callback: Q,
)
where P: IsA<Cancellable>,
Q: FnOnce(Result<Slice<u8>, Error>) + 'static { ... }
fn read_upto_future(
&self,
stop_chars: &[u8],
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<Slice<u8>, Error>>>> { ... }
}
Provided Methods§
fn read_line<P>(&self, cancellable: Option<&P>) -> Result<Slice<u8>, Error>where
P: IsA<Cancellable>,
fn read_line_async<P, Q>( &self, io_priority: Priority, cancellable: Option<&P>, callback: Q, )
fn read_line_future( &self, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<Slice<u8>, Error>>>>
fn read_line_utf8<P>(
&self,
cancellable: Option<&P>,
) -> Result<Option<GString>, Error>where
P: IsA<Cancellable>,
fn read_line_utf8_async<P, Q>( &self, io_priority: Priority, cancellable: Option<&P>, callback: Q, )
fn read_line_utf8_future( &self, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<Option<GString>, Error>>>>
fn read_upto<P>(
&self,
stop_chars: &[u8],
cancellable: Option<&P>,
) -> Result<Slice<u8>, Error>where
P: IsA<Cancellable>,
fn read_upto_async<P, Q>( &self, stop_chars: &[u8], io_priority: Priority, cancellable: Option<&P>, callback: Q, )
fn read_upto_future( &self, stop_chars: &[u8], io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<Slice<u8>, Error>>>>
Object Safety§
This trait is not object safe.