tantivy-py/src/query.rs

22 lines
414 B
Rust
Raw Normal View History

2020-09-20 08:19:29 +00:00
use pyo3::{prelude::*, PyObjectProtocol};
use tantivy as tv;
/// Tantivy's Query
#[pyclass]
pub(crate) struct Query {
pub(crate) inner: Box<dyn tv::query::Query>,
}
impl Query {
pub(crate) fn get(&self) -> &dyn tv::query::Query {
&self.inner
}
}
2019-08-02 11:23:10 +00:00
#[pyproto]
impl PyObjectProtocol for Query {
fn __repr__(&self) -> PyResult<String> {
Ok(format!("Query({:?})", self.get()))
}
}