Struct lasso::RodeoResolver[][src]

pub struct RodeoResolver<K = Spur> { /* fields omitted */ }
Expand description

A read-only view of a Rodeo or ThreadedRodeo that allows contention-free access to interned strings with only key to string resolution

The key type is the same as the Rodeo or ThreadedRodeo that created it

Implementations

impl<K> RodeoResolver<K>[src]

pub fn resolve<'a>(&'a self, key: &K) -> &'a str where
    K: Key
[src]

Resolves a string by its key. Only keys made by the current Resolver or the creator of the current Resolver may be used

Panics

Panics if the key is out of bounds

Example

use lasso::Rodeo;

// ThreadedRodeo is interchangeable for Rodeo here
let mut rodeo = Rodeo::default();
let key = rodeo.get_or_intern("Strings of things with wings and dings");

let rodeo = rodeo.into_resolver();
assert_eq!("Strings of things with wings and dings", rodeo.resolve(&key));

pub fn try_resolve<'a>(&'a self, key: &K) -> Option<&'a str> where
    K: Key
[src]

Resolves a string by its key, returning None if the key is out of bounds. Only keys made by the current Resolver or the creator of the current Resolver may be used

Example

use lasso::Rodeo;

// ThreadedRodeo is interchangeable for Rodeo here
let mut rodeo = Rodeo::default();
let key = rodeo.get_or_intern("Strings of things with wings and dings");

let rodeo = rodeo.into_resolver();
assert_eq!(Some("Strings of things with wings and dings"), rodeo.try_resolve(&key));

pub unsafe fn resolve_unchecked<'a>(&'a self, key: &K) -> &'a str where
    K: Key
[src]

Resolves a string by its key without preforming bounds checks

Safety

The key must be valid for the current interner

Example

use lasso::Rodeo;

// ThreadedRodeo is interchangeable for Rodeo here
let mut rodeo = Rodeo::default();
let key = rodeo.get_or_intern("Strings of things with wings and dings");

let rodeo = rodeo.into_resolver();
unsafe {
    assert_eq!("Strings of things with wings and dings", rodeo.resolve_unchecked(&key));
}

pub fn contains_key(&self, key: &K) -> bool where
    K: Key
[src]

Returns true if the given key exists in the current interner

Example

use lasso::Rodeo;

let mut rodeo = Rodeo::default();
let key = rodeo.get_or_intern("Strings of things with wings and dings");

let rodeo = rodeo.into_resolver();
assert!(rodeo.contains_key(&key));
assert!(!rodeo.contains_key(&key_that_doesnt_exist));

pub fn len(&self) -> usize[src]

Gets the number of interned strings

Example

use lasso::Rodeo;

// ThreadedRodeo is interchangeable for Rodeo here
let mut rodeo = Rodeo::default();
rodeo.get_or_intern("Documentation often has little hidden bits in it");

let rodeo = rodeo.into_resolver();
assert_eq!(rodeo.len(), 1);

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

Returns true if there are no currently interned strings

Example

use lasso::Rodeo;

// ThreadedRodeo is interchangeable for Rodeo here
let rodeo = Rodeo::default();

let rodeo = rodeo.into_resolver();
assert!(rodeo.is_empty());

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

Notable traits for Iter<'a, K>

impl<'a, K> Iterator for Iter<'a, K> where
    K: Key
type Item = (K, &'a str);
[src]

Returns an iterator over the interned strings and their key values

pub fn strings(&self) -> Strings<'_, K>

Notable traits for Strings<'a, K>

impl<'a, K> Iterator for Strings<'a, K> type Item = &'a str;
[src]

Returns an iterator over the interned strings

Trait Implementations

impl<K: Debug> Debug for RodeoResolver<K>[src]

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

Formats the value using the given formatter. Read more

impl<'de, K: Key> Deserialize<'de> for RodeoResolver<K>[src]

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
    D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<K: Key> Index<K> for RodeoResolver<K>[src]

type Output = str

The returned type after indexing.

fn index(&self, idx: K) -> &Self::Output[src]

Performs the indexing (container[index]) operation. Read more

impl<'a, K: Key> IntoIterator for &'a RodeoResolver<K>[src]

type Item = (K, &'a str)

The type of the elements being iterated over.

type IntoIter = Iter<'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

impl<K, S> PartialEq<Rodeo<K, S>> for RodeoResolver<K>[src]

fn eq(&self, other: &Rodeo<K, S>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<K, S> PartialEq<RodeoReader<K, S>> for RodeoResolver<K>[src]

fn eq(&self, other: &RodeoReader<K, S>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<K, S> PartialEq<RodeoResolver<K>> for RodeoReader<K, S>[src]

fn eq(&self, other: &RodeoResolver<K>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<K> PartialEq<RodeoResolver<K>> for RodeoResolver<K>[src]

fn eq(&self, other: &Self) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<K, S> PartialEq<RodeoResolver<K>> for Rodeo<K, S>[src]

fn eq(&self, other: &RodeoResolver<K>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<K, S> PartialEq<RodeoResolver<K>> for ThreadedRodeo<K, S> where
    K: Eq + Hash + Key,
    S: Clone + BuildHasher
[src]

fn eq(&self, other: &RodeoResolver<K>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<K> Resolver<K> for RodeoResolver<K> where
    K: Key
[src]

fn resolve<'a>(&'a self, key: &K) -> &'a str[src]

Resolves the given key into a string Read more

fn try_resolve<'a>(&'a self, key: &K) -> Option<&'a str>[src]

Attempts to resolve the given key into a string, returning None if it cannot be found Read more

unsafe fn resolve_unchecked<'a>(&'a self, key: &K) -> &'a str[src]

Resolves a string by its key without preforming bounds checks Read more

fn contains_key(&self, key: &K) -> bool[src]

Returns true if the current interner contains the given key

fn len(&self) -> usize[src]

Gets the number of currently interned strings

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

Returns true if there are no currently interned strings

impl<K> Serialize for RodeoResolver<K>[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl<K> Eq for RodeoResolver<K>[src]

impl<K: Send> Send for RodeoResolver<K>[src]

impl<K: Sync> Sync for RodeoResolver<K>[src]

Auto Trait Implementations

impl<K> RefUnwindSafe for RodeoResolver<K> where
    K: RefUnwindSafe

impl<K> Unpin for RodeoResolver<K> where
    K: Unpin

impl<K> UnwindSafe for RodeoResolver<K> where
    K: 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, 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.

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]