Struct rustc_data_structures::intern::Interned
source · [−]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: PrivateZst
Implementations
sourceimpl<'a, T> Interned<'a, T>
impl<'a, T> Interned<'a, T>
sourcepub const fn new_unchecked(t: &'a T) -> Self
pub const fn new_unchecked(t: &'a T) -> Self
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
sourceimpl<T, CTX> HashStable<CTX> for Interned<'_, T> where
T: HashStable<CTX>,
impl<T, CTX> HashStable<CTX> for Interned<'_, T> where
T: HashStable<CTX>,
fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher)
sourceimpl<'a, T: Ord> Ord for Interned<'a, T>
impl<'a, T: Ord> Ord for Interned<'a, T>
sourceimpl<'a, T: PartialOrd> PartialOrd<Interned<'a, T>> for Interned<'a, T>
impl<'a, T: PartialOrd> PartialOrd<Interned<'a, T>> for Interned<'a, T>
sourcefn partial_cmp(&self, other: &Interned<'a, T>) -> Option<Ordering>
fn partial_cmp(&self, other: &Interned<'a, T>) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl<'a, T> Copy for Interned<'a, T>
impl<'a, T> Eq for Interned<'a, T>
Auto Trait Implementations
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
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> 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
impl<'a, T> Captures<'a> for T where
T: ?Sized,
impl<T> Erased for T
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 8 bytes