[][src]Struct syntax_pos::symbol::LocalInternedString

pub struct LocalInternedString { /* fields omitted */ }

An alternative to Symbol and InternedString, useful when the chars within the symbol need to be accessed. It is best used for temporary values.

Because the interner outlives any thread which uses this type, we can safely treat string which points to interner data, as an immortal string, as long as this type never crosses between threads.

Methods

impl LocalInternedString[src]

pub fn intern(string: &str) -> Self[src]

Maps a string to its interned representation.

pub fn as_interned_str(self) -> InternedString[src]

pub fn get(&self) -> &str[src]

Trait Implementations

impl !Sync for LocalInternedString[src]

impl Eq for LocalInternedString[src]

impl Ord for LocalInternedString[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 !Send for LocalInternedString[src]

impl<T: Deref<Target = str>> PartialEq<T> for LocalInternedString[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LocalInternedString> for str[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<'a> PartialEq<LocalInternedString> for &'a str[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl PartialEq<LocalInternedString> for String[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl<'a> PartialEq<LocalInternedString> for &'a String[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Copy for LocalInternedString[src]

impl Clone for LocalInternedString[src]

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

Performs copy-assignment from source. Read more

impl PartialOrd<LocalInternedString> for LocalInternedString[src]

impl<U: ?Sized> AsRef<U> for LocalInternedString where
    str: AsRef<U>, 
[src]

impl Deref for LocalInternedString[src]

type Target = str

The resulting type after dereferencing.

impl Debug for LocalInternedString[src]

impl Display for LocalInternedString[src]

impl Hash for LocalInternedString[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

impl Encodable for LocalInternedString[src]

impl Decodable for LocalInternedString[src]

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<T> Encodable for T where
    T: UseSpecializedEncodable + ?Sized
[src]

impl<T> Decodable for T where
    T: UseSpecializedDecodable
[src]

impl<E> SpecializationError for E[src]

impl<T> Erased for T[src]

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

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