Symbol

Trait Symbol 

Source
pub trait Symbol
where Self: RawSymbol + Clone + Copy + Default + Eq + Ord + PartialEq + PartialOrd + Send + Sync + Hash,
{ }
Expand description

The Symbol trait extends the RawSymbol to define the expected behaviors of a symbol used within a Turing machine.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<S> Symbol for S
where S: RawSymbol + Copy + Default + Eq + Ord + Send + Sync + Hash,