Struct tantivy_sstable::Writer

source ·
pub struct Writer<W, TValueWriter>
where W: Write,
{ /* private fields */ }

Implementations§

source§

impl<W, TValueWriter> Writer<W, TValueWriter>
where W: Write, TValueWriter: ValueWriter,

source

pub fn new(wrt: W) -> Self

Creates a new TermDictionaryBuilder.

source

pub fn set_block_len(&mut self, block_len: usize)

Set the target block length.

The delta part of a block will generally be slightly larger than the requested block_len, however this does not account for the length of the Value part of the table.

source

pub fn insert<K: AsRef<[u8]>>( &mut self, key: K, value: &TValueWriter::Value ) -> Result<()>

Inserts a (key, value) pair in the term dictionary. Keys have to be inserted in order.

§Panics

Will panics if keys are inserted in an invalid order.

source

pub fn flush_block_if_required(&mut self) -> Result<()>

source

pub fn finish(self) -> Result<W>

Auto Trait Implementations§

§

impl<W, TValueWriter> Freeze for Writer<W, TValueWriter>
where TValueWriter: Freeze, W: Freeze,

§

impl<W, TValueWriter> RefUnwindSafe for Writer<W, TValueWriter>
where TValueWriter: RefUnwindSafe, W: RefUnwindSafe,

§

impl<W, TValueWriter> Send for Writer<W, TValueWriter>
where TValueWriter: Send, W: Send,

§

impl<W, TValueWriter> Sync for Writer<W, TValueWriter>
where TValueWriter: Sync, W: Sync,

§

impl<W, TValueWriter> Unpin for Writer<W, TValueWriter>
where TValueWriter: Unpin, W: Unpin,

§

impl<W, TValueWriter> UnwindSafe for Writer<W, TValueWriter>
where TValueWriter: UnwindSafe, W: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.