[][src]Struct salsa::InternId

pub struct InternId { /* fields omitted */ }

The "raw-id" is used for interned keys in salsa -- it is basically a newtype'd u32. Typically, it is wrapped in a type of your own devising. For more information about interned keys, see the interned key RFC.

Creating a InternId

InternId values can be constructed using the From impls, which are implemented for u32 and usize:

let intern_id1 = InternId::from(22_u32);
let intern_id2 = InternId::from(22_usize);
assert_eq!(intern_id1, intern_id2);

Converting to a u32 or usize

Normally, there should be no need to access the underlying integer in a InternId. But if you do need to do so, you can convert to a usize using the as_u32 or as_usize methods or the From impls.

let intern_id = InternId::from(22_u32);
let value = u32::from(intern_id);
assert_eq!(value, 22);

Illegal values

Be warned, however, that InternId values cannot be created from arbitrary values -- in particular large values greater than InternId::MAX will panic. Those large values are reserved so that the Rust compiler can use them as sentinel values, which means that (for example) Option<InternId> is represented in a single word.

InternId::from(InternId::MAX);

Methods

impl InternId[src]

pub const MAX: u32[src]

The maximum allowed InternId. This value can grow between releases without affecting semver.

pub fn as_u32(self) -> u32[src]

Convert this raw-id into a u32 value.

let intern_id = InternId::from(22_u32);
let value = intern_id.as_usize();
assert_eq!(value, 22);

pub fn as_usize(self) -> usize[src]

Convert this raw-id into a usize value.

let intern_id = InternId::from(22_u32);
let value = intern_id.as_usize();
assert_eq!(value, 22);

Trait Implementations

impl InternKey for InternId[src]

impl Eq for InternId[src]

impl Ord for InternId[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialEq<InternId> for InternId[src]

impl Copy for InternId[src]

impl Clone for InternId[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<InternId> for InternId[src]

impl From<InternId> for u32[src]

impl From<InternId> for usize[src]

impl From<u32> for InternId[src]

impl From<usize> for InternId[src]

impl Debug for InternId[src]

impl Display for InternId[src]

impl Hash for InternId[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

Auto Trait Implementations

impl Send for InternId

impl Sync for InternId

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]