[−][src]Struct rustc_ap_rustc_span::symbol::SymbolStr
An alternative to Symbol
, useful when the chars within the symbol need to
be accessed. It deliberately has limited functionality and should only be
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.
Trait Implementations
impl Clone for SymbolStr
[src]
impl Debug for SymbolStr
[src]
impl Deref for SymbolStr
[src]
This impl means that if ss
is a SymbolStr
:
*ss
is astr
;&*ss
is a&str
;&ss as &str
is a&str
, which means that&ss
can be passed to a function expecting a&str
.
impl Display for SymbolStr
[src]
impl Eq for SymbolStr
[src]
impl<CTX> HashStable<CTX> for SymbolStr
[src]
fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher)
[src]
impl Ord for SymbolStr
[src]
fn cmp(&self, other: &SymbolStr) -> Ordering
[src]
#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<T: Deref<Target = str>> PartialEq<T> for SymbolStr
[src]
impl PartialOrd<SymbolStr> for SymbolStr
[src]
fn partial_cmp(&self, other: &SymbolStr) -> Option<Ordering>
[src]
fn lt(&self, other: &SymbolStr) -> bool
[src]
fn le(&self, other: &SymbolStr) -> bool
[src]
fn gt(&self, other: &SymbolStr) -> bool
[src]
fn ge(&self, other: &SymbolStr) -> bool
[src]
impl !Send for SymbolStr
[src]
impl StructuralEq for SymbolStr
[src]
impl !Sync for SymbolStr
[src]
impl<CTX> ToStableHashKey<CTX> for SymbolStr
[src]
Auto Trait Implementations
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<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<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>,