Trait sourceview5::prelude::FileOutputStreamExt
source · pub trait FileOutputStreamExt: IsA<FileOutputStream> + Sealed + 'static {
// Provided methods
fn etag(&self) -> Option<GString> { ... }
fn query_info(
&self,
attributes: &str,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<FileInfo, Error> { ... }
fn query_info_async<P>(
&self,
attributes: &str,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<FileInfo, Error>) + 'static { ... }
fn query_info_future(
&self,
attributes: &str,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<FileInfo, Error>>>> { ... }
}
Provided Methods§
fn etag(&self) -> Option<GString>
fn query_info( &self, attributes: &str, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<FileInfo, Error>
fn query_info_async<P>( &self, attributes: &str, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn query_info_future( &self, attributes: &str, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<FileInfo, Error>>>>
Object Safety§
This trait is not object safe.