Trait sourceview5::prelude::FileEnumeratorExt
source · pub trait FileEnumeratorExt: IsA<FileEnumerator> + Sealed + 'static {
// Provided methods
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 child(&self, info: &FileInfo) -> File { ... }
fn container(&self) -> File { ... }
fn has_pending(&self) -> bool { ... }
fn is_closed(&self) -> bool { ... }
fn next_file(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<Option<FileInfo>, Error> { ... }
fn next_files_async<P>(
&self,
num_files: i32,
io_priority: Priority,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<Vec<FileInfo>, Error>) + 'static { ... }
fn next_files_future(
&self,
num_files: i32,
io_priority: Priority,
) -> Pin<Box<dyn Future<Output = Result<Vec<FileInfo>, Error>>>> { ... }
fn set_pending(&self, pending: bool) { ... }
}
Provided Methods§
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 child(&self, info: &FileInfo) -> File
fn container(&self) -> File
fn has_pending(&self) -> bool
fn is_closed(&self) -> bool
fn next_file( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<Option<FileInfo>, Error>
fn next_files_async<P>( &self, num_files: i32, io_priority: Priority, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn next_files_future( &self, num_files: i32, io_priority: Priority, ) -> Pin<Box<dyn Future<Output = Result<Vec<FileInfo>, Error>>>>
fn set_pending(&self, pending: bool)
Object Safety§
This trait is not object safe.