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: Eq + Hash + Send + 'static> Intern<T>
[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 HashSet protected by a Mutex.

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

Trait Implementations

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

Returns a copy of the value. Read more

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: Debug> Fits64 for Intern<T>
[src]

The Fits64 implementation for Intern<T> is designed to normally give (relatively) small numbers, by XORing with a fixed pointer that is also on the heap. This should make the most significant bits of the resulting u64 be zero, which will mean that Set64 (which is space-efficient in storing small integers) can store this result in fewer than 8 bytes.

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

Convert to a u64. This should be infallible.

verify that the conversion is lossless

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

Important traits for &'a mut R

Performs the conversion.

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

Important traits for &'a mut R

Immutably borrows from an owned value. Read more

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

The resulting type after dereferencing.

Important traits for &'a mut R

Dereferences the value.

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

Formats the value using the given formatter. Read more

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

Formats the value using the given formatter.

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

Performs the conversion.

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

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

impl<T> Hash for Intern<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.

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

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

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

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

This method tests for !=.

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

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

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

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

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

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

Serialize this value into the given Serde serializer. Read more

impl<'de, T: Eq + Hash + Send + 'static + Deserialize<'de>> Deserialize<'de> for Intern<T>
[src]

Deserialize this value from the given Serde deserializer. Read more

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

Formats the value using the given formatter. Read more