pub trait TypeSet: Debug + Default {
type Integer: IntParser + Clone + Copy + PartialEq + Debug;
type Float: FloatParser + Clone + Copy + PartialEq + Debug;
}Expand description
Defines the numeric types used in the parser.
Required Associated Types§
type Integer: IntParser + Clone + Copy + PartialEq + Debug
type Float: FloatParser + Clone + Copy + PartialEq + Debug
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.