eryon_core/traits/
symbolic.rs

1/*
2    Appellation: symbolic <module>
3    Contrib: @FL03
4*/
5
6pub trait Symbolic:
7    Clone
8    + Default
9    + Eq
10    + PartialOrd
11    + Send
12    + Sync
13    + core::fmt::Debug
14    + core::fmt::Display
15    + core::hash::Hash
16{
17}
18
19impl<T> Symbolic for T where
20    T: Clone
21        + Default
22        + Eq
23        + PartialOrd
24        + Send
25        + Sync
26        + core::fmt::Debug
27        + core::fmt::Display
28        + core::hash::Hash
29{
30}