[][src]Struct xapian_rusty::Query

pub struct Query {
    pub cxxp: UniquePtr<Query>,
}

Fields

cxxp: UniquePtr<Query>

Implementations

impl Query[src]

pub fn new() -> Result<Self, i8>[src]

pub fn new_range(
    op: XapianOp,
    slot: u32,
    begin: f64,
    end: f64
) -> Result<Self, i8>
[src]

pub fn add_right(&mut self, op: XapianOp, q: &mut Query) -> Result<Self, i8>[src]

pub fn new_double_with_prefix(prefix: &str, d: f64) -> Result<Self, i8>[src]

pub fn is_empty(&mut self) -> bool[src]

pub fn is_empty_content_query(&mut self) -> bool[src]

pub fn get_description(&mut self) -> String[src]

Auto Trait Implementations

impl RefUnwindSafe for Query

impl !Send for Query

impl !Sync for Query

impl Unpin for Query

impl UnwindSafe for Query

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.