[][src]Trait amadeus_core::file::Directory

pub trait Directory: File {
#[must_use]    fn partitions_filter<'async_trait, F>(
        self,
        f: F
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Partition>, Self::Error>> + 'async_trait>>
    where
        F: FnMut(&PathBuf) -> bool,
        F: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]fn partitions_filter<'async_trait, F>(
    self,
    f: F
) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Partition>, Self::Error>> + 'async_trait>> where
    F: FnMut(&PathBuf) -> bool,
    F: 'async_trait,
    Self: 'async_trait, 

Loading content...

Implementations on Foreign Types

impl Directory for PathBuf[src]

impl<'impl0> Directory for &'impl0 Path[src]

Loading content...

Implementors

Loading content...