pub trait FromStrParseable:
FromStr
+ Debug
+ Display { }Expand description
Most values work with the FromStr implementation, but we want to override the behavior for some types
(e.g. Option
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.