[−][src]Struct rustc_ap_rustc_span::symbol::Symbol
An interned string.
Internally, a Symbol is implemented as an index, and all operations
(including hashing, equality, and ordering) operate on that index. The use
of rustc_index::newtype_index! means that Option<Symbol> only takes up 4 bytes,
because rustc_index::newtype_index! reserves the last 256 values for tagging purposes.
Note that Symbol cannot directly be a rustc_index::newtype_index! because it
implements fmt::Debug, Encodable, and Decodable in special ways.
Implementations
impl Symbol[src]
pub fn intern(string: &str) -> Self[src]
Maps a string to its interned representation.
pub fn with<F: FnOnce(&str) -> R, R>(self, f: F) -> R[src]
Access the symbol's chars. This is a slowish operation because it requires locking the symbol interner.
pub fn as_str(self) -> SymbolStr[src]
Convert to a SymbolStr. This is a slowish operation because it
requires locking the symbol interner.
pub fn as_u32(self) -> u32[src]
pub fn to_ident_string(self) -> String[src]
This method is supposed to be used in error messages, so it's expected to be
identical to printing the original identifier token written in source code
(token_to_string, Ident::to_string), except that symbols don't keep the rawness flag
or edition, so we have to guess the rawness using the global edition.
impl Symbol[src]
pub fn is_doc_keyword(self) -> bool[src]
Used for sanity checking rustdoc keyword sections.
pub fn is_path_segment_keyword(self) -> bool[src]
A keyword or reserved identifier that can be used as a path segment.
pub fn is_bool_lit(self) -> bool[src]
Returns true if the symbol is true or false.
pub fn can_be_raw(self) -> bool[src]
This symbol can be a raw identifier.
Trait Implementations
impl Clone for Symbol[src]
impl Copy for Symbol[src]
impl Debug for Symbol[src]
impl Decodable for Symbol[src]
impl Display for Symbol[src]
impl Encodable for Symbol[src]
impl Eq for Symbol[src]
impl Hash for Symbol[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<CTX> HashStable<CTX> for Symbol[src]
fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher)[src]
impl Ord for Symbol[src]
fn cmp(&self, other: &Symbol) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Symbol> for Symbol[src]
impl PartialOrd<Symbol> for Symbol[src]
fn partial_cmp(&self, other: &Symbol) -> Option<Ordering>[src]
fn lt(&self, other: &Symbol) -> bool[src]
fn le(&self, other: &Symbol) -> bool[src]
fn gt(&self, other: &Symbol) -> bool[src]
fn ge(&self, other: &Symbol) -> bool[src]
impl StructuralEq for Symbol[src]
impl StructuralPartialEq for Symbol[src]
impl<CTX> ToStableHashKey<CTX> for Symbol[src]
Auto Trait Implementations
impl RefUnwindSafe for Symbol
impl Send for Symbol
impl Sync for Symbol
impl Unpin for Symbol
impl UnwindSafe for Symbol
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<'a, T> Captures<'a> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Decodable for T where
T: UseSpecializedDecodable, [src]
T: UseSpecializedDecodable,
impl<T> Encodable for T where
T: UseSpecializedEncodable + ?Sized, [src]
T: UseSpecializedEncodable + ?Sized,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool[src]
impl<T> Erased for T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<E> SpecializationError for E[src]
default fn not_found<S, T>(
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized, [src]
trait_name: &'static str,
method_name: &'static str
) -> E where
T: ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,