Trait sourceview5::prelude::OutputStreamExtManual
source · pub trait OutputStreamExtManual: Sized + Sealed + IsA<OutputStream> {
// Provided methods
fn write_async<B, Q, C>(
&self,
buffer: B,
io_priority: Priority,
cancellable: Option<&C>,
callback: Q,
)
where B: AsRef<[u8]> + Send + 'static,
Q: FnOnce(Result<(B, usize), (B, Error)>) + 'static,
C: IsA<Cancellable> { ... }
fn write_all<C>(
&self,
buffer: &[u8],
cancellable: Option<&C>,
) -> Result<(usize, Option<Error>), Error>
where C: IsA<Cancellable> { ... }
fn write_all_async<B, Q, C>(
&self,
buffer: B,
io_priority: Priority,
cancellable: Option<&C>,
callback: Q,
)
where B: AsRef<[u8]> + Send + 'static,
Q: FnOnce(Result<(B, usize, Option<Error>), (B, Error)>) + 'static,
C: IsA<Cancellable> { ... }
fn write_future<B>(
&self,
buffer: B,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<(B, usize), (B, Error)>>>>
where B: AsRef<[u8]> + Send + 'static { ... }
fn write_all_future<B>(
&self,
buffer: B,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<(B, usize, Option<Error>), (B, Error)>>>>
where B: AsRef<[u8]> + Send + 'static { ... }
fn writev(
&self,
vectors: &[OutputVector<'_>],
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<usize, Error> { ... }
fn writev_async<B, P>(
&self,
vectors: impl IntoIterator<Item = B> + 'static,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where B: AsRef<[u8]> + Send + 'static,
P: FnOnce(Result<(Vec<B>, usize), (Vec<B>, Error)>) + 'static { ... }
fn writev_future<B>(
&self,
vectors: impl IntoIterator<Item = B> + 'static,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<(Vec<B>, usize), (Vec<B>, Error)>>>>
where B: AsRef<[u8]> + Send + 'static { ... }
fn writev_all(
&self,
vectors: &[OutputVector<'_>],
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<(usize, Option<Error>), Error> { ... }
fn writev_all_async<B, P>(
&self,
vectors: impl IntoIterator<Item = B> + 'static,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where B: AsRef<[u8]> + Send + 'static,
P: FnOnce(Result<(Vec<B>, usize, Option<Error>), (Vec<B>, Error)>) + 'static { ... }
fn writev_all_future<B>(
&self,
vectors: impl IntoIterator<Item = B> + 'static,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<(Vec<B>, usize, Option<Error>), (Vec<B>, Error)>>>>
where B: AsRef<[u8]> + Send + 'static { ... }
fn into_write(self) -> OutputStreamWrite<Self>
where Self: IsA<OutputStream> { ... }
}
Provided Methods§
fn write_async<B, Q, C>( &self, buffer: B, io_priority: Priority, cancellable: Option<&C>, callback: Q, )
fn write_all<C>(
&self,
buffer: &[u8],
cancellable: Option<&C>,
) -> Result<(usize, Option<Error>), Error>where
C: IsA<Cancellable>,
fn write_all_async<B, Q, C>( &self, buffer: B, io_priority: Priority, cancellable: Option<&C>, callback: Q, )
fn write_future<B>( &self, buffer: B, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(B, usize), (B, Error)>>>>
fn write_all_future<B>( &self, buffer: B, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(B, usize, Option<Error>), (B, Error)>>>>
fn writev( &self, vectors: &[OutputVector<'_>], cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<usize, Error>
fn writev_async<B, P>( &self, vectors: impl IntoIterator<Item = B> + 'static, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn writev_future<B>( &self, vectors: impl IntoIterator<Item = B> + 'static, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(Vec<B>, usize), (Vec<B>, Error)>>>>
fn writev_all( &self, vectors: &[OutputVector<'_>], cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<(usize, Option<Error>), Error>
fn writev_all_async<B, P>( &self, vectors: impl IntoIterator<Item = B> + 'static, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn writev_all_future<B>( &self, vectors: impl IntoIterator<Item = B> + 'static, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<(Vec<B>, usize, Option<Error>), (Vec<B>, Error)>>>>
fn into_write(self) -> OutputStreamWrite<Self>where
Self: IsA<OutputStream>,
Object Safety§
This trait is not object safe.