Symbol

Trait Symbol 

Source
pub trait Symbol:
    Clone
    + Debug
    + Display
    + Eq
    + PartialEq { }
Expand description

Symbol provides the ability to use whatever you want (almost) as a symbol of the crate::TuringMachine alhabet.

One of most important traits.

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<T> Symbol for T
where T: Clone + Debug + Display + Eq + PartialEq,