pub struct Interned<'a, T>(pub &'a T, pub PrivateZst);Expand description
A reference to a value that is interned, and is known to be unique.
Note that it is possible to have a T and a Interned<T> that are (or
refer to) equal but different values. But if you have two different
Interned<T>s, they both refer to the same value, at a single location in
memory. This means that equality and hashing can be done on the value’s
address rather than the value’s contents, which can improve performance.
The PrivateZst field means you can pattern match with Interned(v, _)
but you can only construct a Interned with new_unchecked, and not
directly.
Tuple Fields§
§0: &'a T§1: PrivateZstImplementations§
Source§impl<'a, T> Interned<'a, T>
impl<'a, T> Interned<'a, T>
Sourcepub const fn new_unchecked(t: &'a T) -> Interned<'a, T>
pub const fn new_unchecked(t: &'a T) -> Interned<'a, T>
Create a new Interned value. The value referred to must be interned
and thus be unique, and it must remain unique in the future. This
function has _unchecked in the name but is not unsafe, because if
the uniqueness condition is violated condition it will cause incorrect
behaviour but will not affect memory safety.
Trait Implementations§
Source§impl<T> Ord for Interned<'_, T>where
T: Ord,
impl<T> Ord for Interned<'_, T>where
T: Ord,
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<T> PartialOrd for Interned<'_, T>where
T: PartialOrd,
impl<T> PartialOrd for Interned<'_, T>where
T: PartialOrd,
impl<T> Copy for Interned<'_, T>
impl<T> Eq for Interned<'_, T>
Auto Trait Implementations§
impl<'a, T> Freeze for Interned<'a, T>
impl<'a, T> RefUnwindSafe for Interned<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for Interned<'a, T>where
T: Sync,
impl<'a, T> Sync for Interned<'a, T>where
T: Sync,
impl<'a, T> Unpin for Interned<'a, T>
impl<'a, T> UnwindSafe for Interned<'a, T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
fn equivalent(&self, key: &K) -> bool
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more