Reader

Struct Reader 

Source
pub struct Reader<D: Distance> { /* private fields */ }
Expand description

A reader over the hannoy hnsw graph

Implementations§

Source§

impl<D: Distance> Reader<D>

Source

pub fn open( rtxn: &RoTxn<'_>, index: u16, database: Database<D>, ) -> Result<Reader<D>>

Returns a reader over the database with the specified Distance type.

Source

pub fn dimensions(&self) -> usize

Returns the number of dimensions in the index.

Source

pub fn n_entrypoints(&self) -> usize

Returns the number of entry points to the hnsw index.

Source

pub fn n_items(&self) -> u64

Returns the number of vectors stored in the index.

Source

pub fn item_ids(&self) -> &RoaringBitmap

Returns all the item ids contained in this index.

Source

pub fn index(&self) -> u16

Returns the index of this reader in the database.

Source

pub fn version(&self) -> Version

Returns the version of the database.

Source

pub fn n_nodes(&self, rtxn: &RoTxn<'_>) -> Result<Option<NonZeroUsize>>

Returns the number of nodes in the index. Useful to run an exhaustive search.

Source

pub fn item_vector( &self, rtxn: &RoTxn<'_>, item_id: ItemId, ) -> Result<Option<Vec<f32>>>

Returns the vector for item i that was previously added.

Source

pub fn is_empty(&self, rtxn: &RoTxn<'_>) -> Result<bool>

Returns true if the index is empty.

Source

pub fn contains_item(&self, rtxn: &RoTxn<'_>, item_id: ItemId) -> Result<bool>

Returns true if the database contains the given item.

Source

pub fn iter<'t>(&self, rtxn: &'t RoTxn<'_>) -> Result<ItemIter<'t, D>>

Returns an iterator over the items vector.

Source

pub fn nns(&self, count: usize) -> QueryBuilder<'_, D>

Return a QueryBuilder that lets you configure and execute a search request.

You must provide the number of items you want to receive.

Trait Implementations§

Source§

impl<D: Debug + Distance> Debug for Reader<D>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<D> Freeze for Reader<D>

§

impl<D> RefUnwindSafe for Reader<D>
where D: RefUnwindSafe,

§

impl<D> Send for Reader<D>

§

impl<D> Sync for Reader<D>

§

impl<D> Unpin for Reader<D>
where D: Unpin,

§

impl<D> UnwindSafe for Reader<D>
where D: UnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

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

§

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more