[][src]Struct xapian_rusty::TermGenerator

pub struct TermGenerator { /* fields omitted */ }

Implementations

impl TermGenerator[src]

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

impl TermGenerator[src]

pub fn set_stemmer(&mut self, stem: &mut Stem) -> Result<(), XError>[src]

pub fn set_document(&mut self, doc: &mut Document) -> Result<(), XError>[src]

pub fn index_text_with_prefix(
    &mut self,
    data: &str,
    prefix: &str
) -> Result<(), XError>
[src]

pub fn index_text(&mut self, data: &str) -> Result<(), XError>[src]

pub fn index_int(&mut self, data: i32, prefix: &str) -> Result<(), XError>[src]

pub fn index_long(&mut self, data: i64, prefix: &str) -> Result<(), XError>[src]

pub fn index_float(&mut self, data: f32, prefix: &str) -> Result<(), XError>[src]

pub fn index_double(&mut self, data: f64, prefix: &str) -> Result<(), XError>[src]

Auto Trait Implementations

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.