pub struct Symbol(NonZeroU32);
🔬This is a nightly-only experimental API. (proc_macro_internals #27812)
Expand description

Handle for a symbol string stored within the Interner.

Tuple Fields§

§0: NonZeroU32
🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Implementations§

source§

impl Symbol

source

pub(crate) fn normalize_and_validate_ident(string: &str) -> Result<Symbol, ()>

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)
source§

impl Symbol

source

pub(crate) fn new(string: &str) -> Self

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Intern a new Symbol

source

pub(crate) fn new_ident(string: &str, is_raw: bool) -> Self

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Create a new Symbol for an identifier.

Validates and normalizes before converting it to a symbol.

source

pub(crate) fn with<R>(self, f: impl FnOnce(&str) -> R) -> R

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Run a callback with the symbol’s string value.

source

pub(crate) fn invalidate_all()

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Clear out the thread-local symbol interner, making all previously created symbols invalid such that with will panic when called on them.

source

fn is_valid_ascii_ident(bytes: &[u8]) -> bool

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Check if the ident is a valid ASCII identifier.

This is a short-circuit which is cheap to implement within the proc-macro client to avoid RPC when creating simple idents, but may return false for a valid identifier if it contains non-ASCII characters.

source

fn can_be_raw(string: &str) -> bool

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)

Trait Implementations§

source§

impl Clone for Symbol

source§

fn clone(&self) -> Symbol

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Symbol

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S> DecodeMut<'_, '_, S> for Symbol

source§

fn decode(r: &mut &'_ [u8], s: &mut S) -> Self

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)
source§

impl Display for Symbol

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S> Encode<S> for Symbol

source§

fn encode(self, w: &mut Buffer, s: &mut S)

🔬This is a nightly-only experimental API. (proc_macro_internals #27812)
source§

impl Eq for Symbol

source§

impl Hash for Symbol

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Symbol> for Symbol

source§

fn eq(&self, other: &Symbol) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl ToString for Symbol

source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl Copy for Symbol

source§

impl !Send for Symbol

source§

impl StructuralEq for Symbol

source§

impl StructuralPartialEq for Symbol

source§

impl !Sync for Symbol

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.