[][src]Trait tantivy::directory::DirectoryClone

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

DirectoryClone

Required methods

fn box_clone(&self) -> Box<dyn Directory>

Clones the directory and boxes the clone

Loading content...

Implementors

impl<T> DirectoryClone for T where
    T: 'static + Directory + Clone
[src]

Loading content...