Trait sourceview5::prelude::FileExtManual
source · pub trait FileExtManual: Sized + Sealed + IsA<File> {
Show 13 methods
// Provided methods
fn replace_contents_async<B, R, C>(
&self,
contents: B,
etag: Option<&str>,
make_backup: bool,
flags: FileCreateFlags,
cancellable: Option<&C>,
callback: R,
)
where B: AsRef<[u8]> + Send + 'static,
R: FnOnce(Result<(B, GString), (B, Error)>) + 'static,
C: IsA<Cancellable> { ... }
fn replace_contents_future<B>(
&self,
contents: B,
etag: Option<&str>,
make_backup: bool,
flags: FileCreateFlags,
) -> Pin<Box<dyn Future<Output = Result<(B, GString), (B, Error)>>>>
where B: AsRef<[u8]> + Send + 'static { ... }
fn enumerate_children_async<P, Q>(
&self,
attributes: &str,
flags: FileQueryInfoFlags,
io_priority: Priority,
cancellable: Option<&P>,
callback: Q,
)
where P: IsA<Cancellable>,
Q: FnOnce(Result<FileEnumerator, Error>) + 'static { ... }
fn enumerate_children_future(
&self,
attributes: &str,
flags: FileQueryInfoFlags,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<FileEnumerator, Error>>>> { ... }
fn copy_async<Q>(
&self,
destination: &impl IsA<File>,
flags: FileCopyFlags,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
progress_callback: Option<Box<dyn FnMut(i64, i64)>>,
callback: Q,
)
where Q: FnOnce(Result<(), Error>) + 'static { ... }
fn copy_future(
&self,
destination: &(impl IsA<File> + Clone + 'static),
flags: FileCopyFlags,
io_priority: Priority,
) -> (Pin<Box<dyn Future<Output = Result<(), Error>>>>, Pin<Box<dyn Stream<Item = (i64, i64)>>>) { ... }
fn load_contents(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<(Slice<u8>, Option<GString>), Error> { ... }
fn load_contents_async<P>(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<(Slice<u8>, Option<GString>), Error>) + 'static { ... }
fn load_contents_future(
&self,
) -> Pin<Box<dyn Future<Output = Result<(Slice<u8>, Option<GString>), Error>>>> { ... }
fn load_partial_contents_async<P, Q>(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
read_more_callback: P,
callback: Q,
)
where P: FnMut(&[u8]) -> bool + 'static,
Q: FnOnce(Result<(Slice<u8>, Option<GString>), Error>) + 'static { ... }
fn measure_disk_usage(
&self,
flags: FileMeasureFlags,
cancellable: Option<&impl IsA<Cancellable>>,
progress_callback: Option<Box<dyn FnMut(bool, u64, u64, u64)>>,
) -> Result<(u64, u64, u64), Error> { ... }
fn measure_disk_usage_async<P>(
&self,
flags: FileMeasureFlags,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
progress_callback: Option<Box<dyn FnMut(bool, u64, u64, u64)>>,
callback: P,
)
where P: FnOnce(Result<(u64, u64, u64), Error>) + 'static { ... }
fn measure_disk_usage_future(
&self,
flags: FileMeasureFlags,
io_priority: Priority,
) -> (Pin<Box<dyn Future<Output = Result<(u64, u64, u64), Error>>>>, Pin<Box<dyn Stream<Item = (bool, u64, u64, u64)>>>) { ... }
}
Provided Methods§
fn replace_contents_async<B, R, C>( &self, contents: B, etag: Option<&str>, make_backup: bool, flags: FileCreateFlags, cancellable: Option<&C>, callback: R, )
fn replace_contents_future<B>( &self, contents: B, etag: Option<&str>, make_backup: bool, flags: FileCreateFlags, ) -> Pin<Box<dyn Future<Output = Result<(B, GString), (B, Error)>>>>
fn enumerate_children_async<P, Q>( &self, attributes: &str, flags: FileQueryInfoFlags, io_priority: Priority, cancellable: Option<&P>, callback: Q, )
fn enumerate_children_future( &self, attributes: &str, flags: FileQueryInfoFlags, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<FileEnumerator, Error>>>>
fn copy_async<Q>( &self, destination: &impl IsA<File>, flags: FileCopyFlags, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, progress_callback: Option<Box<dyn FnMut(i64, i64)>>, callback: Q, )
fn copy_future( &self, destination: &(impl IsA<File> + Clone + 'static), flags: FileCopyFlags, io_priority: Priority, ) -> (Pin<Box<dyn Future<Output = Result<(), Error>>>>, Pin<Box<dyn Stream<Item = (i64, i64)>>>)
fn load_contents( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<(Slice<u8>, Option<GString>), Error>
fn load_contents_async<P>( &self, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn load_contents_future( &self, ) -> Pin<Box<dyn Future<Output = Result<(Slice<u8>, Option<GString>), Error>>>>
fn load_partial_contents_async<P, Q>( &self, cancellable: Option<&impl IsA<Cancellable>>, read_more_callback: P, callback: Q, )
fn measure_disk_usage( &self, flags: FileMeasureFlags, cancellable: Option<&impl IsA<Cancellable>>, progress_callback: Option<Box<dyn FnMut(bool, u64, u64, u64)>>, ) -> Result<(u64, u64, u64), Error>
fn measure_disk_usage_async<P>( &self, flags: FileMeasureFlags, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, progress_callback: Option<Box<dyn FnMut(bool, u64, u64, u64)>>, callback: P, )
fn measure_disk_usage_future( &self, flags: FileMeasureFlags, io_priority: Priority, ) -> (Pin<Box<dyn Future<Output = Result<(u64, u64, u64), Error>>>>, Pin<Box<dyn Stream<Item = (bool, u64, u64, u64)>>>)
Object Safety§
This trait is not object safe.