Struct internment::Intern [] [src]

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

A pointer to an interned object.

The interned object will be held in memory indefinitely. On the plus side, this means that lifetime issues are simple when using Intern.

Example

use internment::Intern;

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

Methods

impl<T: Clone + Eq + Hash + Send + 'static> Intern<T>
[src]

[src]

Intern a value. 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 Intern::new is a bit slow, since it needs to check a HashMap protected by a Mutex.

[src]

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

Trait Implementations

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

[src]

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

1.0.0
[src]

This method tests for !=.

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

An Intern is Copy, which is unusal for a pointer. This is safe because we never free the data pointed to by an Intern.

impl<T> Send for Intern<T>
[src]

impl<T> Sync for Intern<T>
[src]

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

[src]

Immutably borrows from an owned value. Read more

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

[src]

Performs the conversion.

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

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<T: Default + Hash + Eq + Clone + Send + 'static> Default for Intern<T>
[src]

[src]

Returns the "default value" for a type. Read more

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

[src]

Formats the value using the given formatter.

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

[src]

Formats the value using the given formatter. Read more

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

[src]

Formats the value using the given formatter.

impl<T: Debug> Fits64 for Intern<T>
[src]

[src]

Convert back from a u64. This is unsafe, since it is only infallible (and lossless) if the u64 originally came from type Self. Read more

[src]

Convert to a u64. This should be infallible.

[src]

verify that the conversion is lossless

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

The hash implementation for Intern 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 pointer of Intern::new(data) with data itself.

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more