pub trait Parsable { // Required method fn parse(symbol: &str) -> Res<Self> where Self: Sized; }
A trait for types that can be parsed from a string.
Parses the type from a string.