Struct matterdb::indexes::KeySetIndex[][src]

pub struct KeySetIndex<T: RawAccess, K: ?Sized> { /* fields omitted */ }

A set of key items.

KeySetIndex implements a set that stores the elements as keys with empty values. KeySetIndex requires that elements should implement the BinaryKey trait.

Implementations

impl<T, K: ?Sized> KeySetIndex<T, K> where
    T: RawAccess,
    K: BinaryKey
[src]

pub fn contains(&self, item: &K) -> bool[src]

Returns true if the set contains the indicated value.

Examples

use matterdb::{access::CopyAccessExt, TemporaryDB, Database, KeySetIndex};

let db = TemporaryDB::new();
let fork = db.fork();
let mut index = fork.get_key_set("name");
assert!(!index.contains(&1));

index.insert(&1);
assert!(index.contains(&1));

pub fn iter(&self) -> Keys<'_, K>

Notable traits for Keys<'_, K>

impl<K: ?Sized> Iterator for Keys<'_, K> where
    K: BinaryKey
type Item = K::Owned;
[src]

Returns an iterator over set elements.

Examples

use matterdb::{access::CopyAccessExt, TemporaryDB, Database, KeySetIndex};

let db = TemporaryDB::new();
let fork = db.fork();
let index = fork.get_key_set::<_, u8>("name");

for val in index.iter() {
    println!("{}", val);
}

pub fn iter_from(&self, from: &K) -> Keys<'_, K>

Notable traits for Keys<'_, K>

impl<K: ?Sized> Iterator for Keys<'_, K> where
    K: BinaryKey
type Item = K::Owned;
[src]

Returns an iterator over set elements starting from the specified value.

Examples

use matterdb::{access::CopyAccessExt, TemporaryDB, Database, KeySetIndex};

let db = TemporaryDB::new();
let fork = db.fork();
let index = fork.get_key_set::<_, u8>("name");

for val in index.iter_from(&2) {
    println!("{}", val);
}

impl<T, K: ?Sized> KeySetIndex<T, K> where
    T: RawAccessMut,
    K: BinaryKey
[src]

pub fn insert(&mut self, item: &K)[src]

Adds a key to the set.

Examples

use matterdb::{access::CopyAccessExt, TemporaryDB, Database, KeySetIndex};

let db = TemporaryDB::new();
let fork = db.fork();
let mut index = fork.get_key_set("name");

index.insert(&1);
assert!(index.contains(&1));

pub fn remove(&mut self, item: &K)[src]

Removes a key from the set.

Examples

use matterdb::{access::CopyAccessExt, TemporaryDB, Database, KeySetIndex};

let db = TemporaryDB::new();
let fork = db.fork();
let mut index = fork.get_key_set("name");

index.insert(&1);
assert!(index.contains(&1));

index.remove(&1);
assert!(!index.contains(&1));

pub fn clear(&mut self)[src]

Clears the set, removing all values.

Notes

Currently, this method is not optimized to delete a large set of data. During the execution of this method, the amount of allocated memory is linearly dependent on the number of elements in the index.

Examples

use matterdb::{access::CopyAccessExt, TemporaryDB, Database, KeySetIndex};

let db = TemporaryDB::new();
let fork = db.fork();
let mut index = fork.get_key_set("name");

index.insert(&1);
assert!(index.contains(&1));

index.clear();
assert!(!index.contains(&1));

Trait Implementations

impl<T: Debug + RawAccess, K: Debug + ?Sized> Debug for KeySetIndex<T, K>[src]

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

Formats the value using the given formatter. Read more

impl<T, K: ?Sized> FromAccess<T> for KeySetIndex<T::Base, K> where
    T: Access,
    K: BinaryKey
[src]

fn from_access(access: T, addr: IndexAddress) -> Result<Self, AccessError>[src]

Constructs the object at the given address. Read more

fn from_root(access: T) -> Result<Self, AccessError>[src]

Constructs the object from the root of the access. Read more

impl<T, K: ?Sized> IndexIterator for KeySetIndex<T, K> where
    T: RawAccess,
    K: BinaryKey
[src]

type Key = K

Type encompassing index keys.

type Value = ()

Type encompassing index values.

fn index_iter(&self, from: Option<&K>) -> Entries<'_, K, ()>

Notable traits for Entries<'_, K, V>

impl<K: ?Sized, V> Iterator for Entries<'_, K, V> where
    K: BinaryKey,
    V: BinaryValue
type Item = (K::Owned, V);
[src]

Continues iteration from the specified position. If from is None, starts the iteration from scratch. Read more

impl<'a, T, K: ?Sized> IntoIterator for &'a KeySetIndex<T, K> where
    T: RawAccess,
    K: BinaryKey
[src]

type Item = K::Owned

The type of the elements being iterated over.

type IntoIter = Keys<'a, K>

Which kind of iterator are we turning this into?

fn into_iter(self) -> Self::IntoIter[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

impl<T, K: ?Sized> RefUnwindSafe for KeySetIndex<T, K> where
    K: RefUnwindSafe,
    T: RefUnwindSafe,
    <T as RawAccess>::Changes: RefUnwindSafe

impl<T, K: ?Sized> Send for KeySetIndex<T, K> where
    K: Send,
    T: Send,
    <T as RawAccess>::Changes: Send

impl<T, K: ?Sized> Sync for KeySetIndex<T, K> where
    K: Sync,
    T: Sync,
    <T as RawAccess>::Changes: Sync

impl<T, K: ?Sized> Unpin for KeySetIndex<T, K> where
    K: Unpin,
    T: Unpin,
    <T as RawAccess>::Changes: Unpin

impl<T, K: ?Sized> UnwindSafe for KeySetIndex<T, K> where
    K: UnwindSafe,
    T: UnwindSafe,
    <T as RawAccess>::Changes: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

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

Initializes a with the given initializer. Read more

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

Dereferences the given pointer. Read more

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

Mutably dereferences the given pointer. Read more

pub 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>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

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.

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

Performs the conversion.