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§
fn chown<'life0, 'async_trait, P>( &'life0 self, path: P, uid: u32, gid: u32, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
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.