logo
pub trait DirectoryClone {
    fn box_clone(&self) -> Box<dyn Directory>;
}
Expand description

DirectoryClone

Required Methods

Clones the directory and boxes the clone

Implementors