Struct internment::LocalIntern
source · [−]pub struct LocalIntern<T> { /* private fields */ }
Expand description
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
sourceimpl<T: Eq + Hash + 'static> LocalIntern<T>
impl<T: Eq + Hash + 'static> LocalIntern<T>
sourcepub fn new(val: T) -> LocalIntern<T>
pub fn new(val: T) -> LocalIntern<T>
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.
sourcepub fn from<'a, Q: ?Sized + Eq + Hash + 'a>(val: &'a Q) -> LocalIntern<T> where
T: Borrow<Q> + From<&'a Q>,
pub fn from<'a, Q: ?Sized + Eq + Hash + 'a>(val: &'a Q) -> LocalIntern<T> where
T: Borrow<Q> + From<&'a Q>,
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)
.
sourcepub fn num_objects_interned() -> usize
pub fn num_objects_interned() -> usize
See how many objects have been interned. This may be helpful in analyzing memory use.
Trait Implementations
sourceimpl<T> AsRef<T> for LocalIntern<T>
impl<T> AsRef<T> for LocalIntern<T>
sourceimpl<T> Borrow<T> for LocalIntern<T>
impl<T> Borrow<T> for LocalIntern<T>
sourceimpl<T> Clone for LocalIntern<T>
impl<T> Clone for LocalIntern<T>
sourceimpl<T: Debug> Debug for LocalIntern<T>
impl<T: Debug> Debug for LocalIntern<T>
sourceimpl<T: Eq + Hash + Default + 'static> Default for LocalIntern<T>
impl<T: Eq + Hash + Default + 'static> Default for LocalIntern<T>
sourcefn default() -> LocalIntern<T>
fn default() -> LocalIntern<T>
Returns the “default value” for a type. Read more
sourceimpl<T> Deref for LocalIntern<T>
impl<T> Deref for LocalIntern<T>
sourceimpl<T: Display> Display for LocalIntern<T>
impl<T: Display> Display for LocalIntern<T>
sourceimpl<T: Eq + Hash + 'static> From<T> for LocalIntern<T>
impl<T: Eq + Hash + 'static> From<T> for LocalIntern<T>
sourceimpl<T> Hash for LocalIntern<T>
impl<T> Hash for LocalIntern<T>
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.
sourceimpl<T: Ord> Ord for LocalIntern<T>
impl<T: Ord> Ord for LocalIntern<T>
sourceimpl<T> PartialEq<LocalIntern<T>> for LocalIntern<T>
impl<T> PartialEq<LocalIntern<T>> for LocalIntern<T>
sourceimpl<T: PartialOrd> PartialOrd<LocalIntern<T>> for LocalIntern<T>
impl<T: PartialOrd> PartialOrd<LocalIntern<T>> for LocalIntern<T>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
sourcefn lt(&self, other: &Self) -> bool
fn lt(&self, other: &Self) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
sourcefn le(&self, other: &Self) -> bool
fn le(&self, other: &Self) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<T> Pointer for LocalIntern<T>
impl<T> Pointer for LocalIntern<T>
impl<T> Copy for LocalIntern<T>
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> Eq for LocalIntern<T>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more