Struct internment::LocalIntern[][src]

pub struct LocalIntern<T> { /* fields omitted */ }

A pointer to a thread-local interned object.

The interned object will be held in memory as long as the thread is still running. Thus you can arrange a crude sort of arena allocation by running code using LocalIntern on a temporary thread. Lifetime issues are as simple as when using Intern. LocalIntern differs in that it is neigher Send nor Share, so it cannot be used in a multithreaded manner. On the benefit side, it is faster than Intern, and the memory can be freed (by running in a temporary thread).

Example

use internment::LocalIntern;

let x = LocalIntern::new("hello");
let y = LocalIntern::new("world");
assert_ne!(x, y);
assert_eq!(x, LocalIntern::new("hello"));
assert_eq!(*x, "hello"); // dereference a LocalIntern like a pointer

Example with owned String data

use internment::LocalIntern;

let x = LocalIntern::new("hello".to_string());
let y = LocalIntern::<String>::from("world");
assert_ne!(x, y);
assert_eq!(x, LocalIntern::from("hello"));
assert_eq!(&*x, "hello"); // dereference a LocalIntern like a pointer

Implementations

impl<T: Eq + Hash + 'static> LocalIntern<T>[src]

pub fn new(val: T) -> LocalIntern<T>[src]

Intern a value in a thread-local way. If this value has not previously been interned, then new will allocate a spot for the value on the heap. Otherwise, it will return a pointer to the object previously allocated.

Note that LocalIntern::new is a bit slow, since it needs to check a HashMap protected by a Mutex.

pub fn from<'a, Q: ?Sized + Eq + Hash + 'a>(val: &'a Q) -> LocalIntern<T> where
    T: Borrow<Q> + From<&'a Q>, 
[src]

Intern a value from a reference in a thread-local way (fastest).

If this value has not previously been interned, then new will allocate a spot for the value on the heap and generate that value using T::from(val).

pub fn num_objects_interned() -> usize[src]

See how many objects have been interned. This may be helpful in analyzing memory use.

Trait Implementations

impl<T> AsRef<T> for LocalIntern<T>[src]

impl<T> Borrow<T> for LocalIntern<T>[src]

impl<T> Clone for LocalIntern<T>[src]

impl<T> Copy for LocalIntern<T>[src]

An LocalIntern is Copy, which is unusal for a pointer. This is safe because we never free the data pointed to by an LocalIntern until the thread itself is destroyed.

impl<T: Debug> Debug for LocalIntern<T>[src]

impl<T: Eq + Hash + Default + 'static> Default for LocalIntern<T>[src]

impl<T> Deref for LocalIntern<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Display> Display for LocalIntern<T>[src]

impl<T> Eq for LocalIntern<T>[src]

impl<T: Eq + Hash + 'static> From<T> for LocalIntern<T>[src]

impl<T> Hash for LocalIntern<T>[src]

The hash implementation returns the hash of the pointer value, not the hash of the value pointed to. This should be irrelevant, since there is a unique pointer for every value, but it is observable, since you could compare the hash of the pointer with hash of the data itself.

impl<T: Ord> Ord for LocalIntern<T>[src]

impl<T> PartialEq<LocalIntern<T>> for LocalIntern<T>[src]

impl<T: PartialOrd> PartialOrd<LocalIntern<T>> for LocalIntern<T>[src]

impl<T> Pointer for LocalIntern<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for LocalIntern<T> where
    T: RefUnwindSafe

impl<T> !Send for LocalIntern<T>

impl<T> !Sync for LocalIntern<T>

impl<T> Unpin for LocalIntern<T>

impl<T> UnwindSafe for LocalIntern<T> where
    T: RefUnwindSafe

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> CallHasher for T where
    T: Hash

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.