1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
use crate::{ builtins::Symbol, gc::{empty_trace, Finalize, Trace}, }; use std::{ fmt::{self, Display}, ops::Deref, rc::Rc, }; #[derive(Debug, Finalize, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub struct RcSymbol(Rc<Symbol>); unsafe impl Trace for RcSymbol { empty_trace!(); } impl Display for RcSymbol { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self.0.description() { Some(desc) => write!(f, "Symbol({})", desc), None => write!(f, "Symbol()"), } } } impl Deref for RcSymbol { type Target = Symbol; #[inline] fn deref(&self) -> &Self::Target { &self.0 } } impl From<Symbol> for RcSymbol { #[inline] fn from(symbol: Symbol) -> Self { Self(Rc::from(symbol)) } }