pub struct Symbol(/* private fields */);Expand description
An interned string.
This is provided by the symbol_table crate.
Internally, egg frequently compares Vars and elements of
Languages. To keep comparisons fast, egg provides Symbol a simple
wrapper providing interned strings.
You may wish to use Symbol in your own Languages to increase
performance and keep enode sizes down (a Symbol is only 4 bytes,
compared to 24 for a String.)
A Symbol is simply a wrapper around an integer.
When creating a Symbol from a string, egg looks up it up in a global
table, returning the index (inserting it if not found).
That integer is used to cheaply implement
Copy, Clone, PartialEq, Eq, PartialOrd, Ord, and Hash.
The internal symbol cache leaks the strings, which should be fine if you only put in things like variable names and identifiers.
§Example
use egg::Symbol;
assert_eq!(Symbol::from("foo"), Symbol::from("foo"));
assert_eq!(Symbol::from("foo"), "foo".parse().unwrap());
assert_ne!(Symbol::from("foo"), Symbol::from("bar"));A interned string in the global symbol table.
This requires the global feature on the crate.
GlobalSymbol is a wrapper around Symbol that knows to refer to a
built-in, global SymbolTable. Strings into the global table are never freed.
This enables a lot of convenience methods and trait implementations over
GlobalSymbol (see below). In particular,
you can convert it to &'static str,
convert From and Into a &str,
and de/serialize using serde if the serde feature is enabled.
Implementations§
Trait Implementations§
Source§impl Clone for GlobalSymbol
impl Clone for GlobalSymbol
Source§fn clone(&self) -> GlobalSymbol
fn clone(&self) -> GlobalSymbol
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for GlobalSymbol
impl Debug for GlobalSymbol
Source§impl<'de> Deserialize<'de> for GlobalSymbol
Available on crate feature serde only.
impl<'de> Deserialize<'de> for GlobalSymbol
serde only.Source§fn deserialize<D>(
deserializer: D,
) -> Result<GlobalSymbol, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<GlobalSymbol, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl Display for GlobalSymbol
impl Display for GlobalSymbol
Source§impl From<&String> for GlobalSymbol
impl From<&String> for GlobalSymbol
Source§fn from(s: &String) -> GlobalSymbol
fn from(s: &String) -> GlobalSymbol
Source§impl From<&str> for GlobalSymbol
impl From<&str> for GlobalSymbol
Source§fn from(s: &str) -> GlobalSymbol
fn from(s: &str) -> GlobalSymbol
Source§impl From<GlobalSymbol> for &'static str
impl From<GlobalSymbol> for &'static str
Source§fn from(sym: GlobalSymbol) -> &'static str
fn from(sym: GlobalSymbol) -> &'static str
Source§impl From<GlobalSymbol> for Var
impl From<GlobalSymbol> for Var
Source§impl From<String> for GlobalSymbol
impl From<String> for GlobalSymbol
Source§fn from(s: String) -> GlobalSymbol
fn from(s: String) -> GlobalSymbol
Source§impl FromStr for GlobalSymbol
impl FromStr for GlobalSymbol
Source§type Err = Infallible
type Err = Infallible
Source§fn from_str(s: &str) -> Result<GlobalSymbol, <GlobalSymbol as FromStr>::Err>
fn from_str(s: &str) -> Result<GlobalSymbol, <GlobalSymbol as FromStr>::Err>
s to return a value of this type. Read moreSource§impl Hash for GlobalSymbol
impl Hash for GlobalSymbol
Source§impl Ord for GlobalSymbol
impl Ord for GlobalSymbol
Source§fn cmp(&self, other: &GlobalSymbol) -> Ordering
fn cmp(&self, other: &GlobalSymbol) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for GlobalSymbol
impl PartialEq for GlobalSymbol
Source§impl PartialOrd for GlobalSymbol
impl PartialOrd for GlobalSymbol
Source§impl Serialize for GlobalSymbol
impl Serialize for GlobalSymbol
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl Copy for GlobalSymbol
impl Eq for GlobalSymbol
impl StructuralPartialEq for GlobalSymbol
Auto Trait Implementations§
impl Freeze for GlobalSymbol
impl RefUnwindSafe for GlobalSymbol
impl Send for GlobalSymbol
impl Sync for GlobalSymbol
impl Unpin for GlobalSymbol
impl UnwindSafe for GlobalSymbol
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.