pub trait FloppyDiskUnixExt {
    // Required method
    fn chown<'life0, 'async_trait, P>(
        &'life0 self,
        path: P,
        uid: u32,
        gid: u32
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where P: 'async_trait + Into<PathBuf> + Send,
             Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn chown<'life0, 'async_trait, P>( &'life0 self, path: P, uid: u32, gid: u32 ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where P: 'async_trait + Into<PathBuf> + Send, Self: 'async_trait, 'life0: 'async_trait,

Implementors§