Struct simple_interner::Interned [] [src]

pub struct Interned<'a, T: 'a + ?Sized>(_);

An item interned by an Interner.

As two equal interned items will always be the same reference, only the reference is compared for equality rather than going to the potentially expensive implementation on the concrete type.

In all other cases, this should act as if it were a reference to the wrapped type. If you just want to get the wrapped reference out, see Interned::get.

Methods

impl<'a, T: 'a + ?Sized> Interned<'a, T>
[src]

[src]

Get the wrapped reference out directly.

This is an associated fn rather than a method in order to avoid conflicting with implementations on the concrete type.

Trait Implementations

impl<'a, T: Copy + 'a + ?Sized> Copy for Interned<'a, T>
[src]

impl<'a, T: Clone + 'a + ?Sized> Clone for Interned<'a, T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, T: Debug + 'a + ?Sized> Debug for Interned<'a, T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a, T: Ord + 'a + ?Sized> Ord for Interned<'a, T>
[src]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<'a, T: PartialOrd + 'a + ?Sized> PartialOrd for Interned<'a, T>
[src]

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

impl<'a, T: Eq + 'a + ?Sized> Eq for Interned<'a, T>
[src]

impl<'a, T: Hash + 'a + ?Sized> Hash for Interned<'a, T>
[src]

[src]

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

1.3.0
[src]

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

impl<'a, T: 'a + ?Sized> PartialEq for Interned<'a, T>
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl<'a, T: 'a + ?Sized> Deref for Interned<'a, T>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

Auto Trait Implementations

impl<'a, T: ?Sized> Send for Interned<'a, T> where
    T: Sync

impl<'a, T: ?Sized> Sync for Interned<'a, T> where
    T: Sync