Skip to main content

FsCopy

Trait FsCopy 

Source
pub trait FsCopy: BaseFsCopy {
    // Provided method
    fn fs_copy(
        &self,
        from: impl AsRef<Path>,
        to: impl AsRef<Path>,
    ) -> Result<u64> { ... }
}

Provided Methods§

Source

fn fs_copy(&self, from: impl AsRef<Path>, to: impl AsRef<Path>) -> Result<u64>

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.

Implementors§

Source§

impl<T: BaseFsCopy> FsCopy for T