pub trait FileEnumeratorImplExt: FileEnumeratorImpl {
    // Provided methods
    fn parent_next_file(
        &self,
        cancellable: Option<&Cancellable>,
    ) -> Result<Option<FileInfo>, Error> { ... }
    fn parent_close(
        &self,
        cancellable: Option<&Cancellable>,
    ) -> (bool, Option<Error>) { ... }
}Provided Methods§
fn parent_next_file( &self, cancellable: Option<&Cancellable>, ) -> Result<Option<FileInfo>, Error>
fn parent_close( &self, cancellable: Option<&Cancellable>, ) -> (bool, Option<Error>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.