Trait tantivy::query::QueryClone[][src]

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

Implements box_clone.

Required methods

fn box_clone(&self) -> Box<dyn Query>[src]

Returns a boxed clone of self.

Loading content...

Implementations on Foreign Types

impl QueryClone for Box<dyn Query>[src]

Loading content...

Implementors

impl<T> QueryClone for T where
    T: 'static + Query + Clone
[src]

Loading content...