//! # Number types
//!//! Aliases for the number types needed when reading and converting MPS structures.
usestd::fmt::{Debug, Display};usestd::ops::{Neg, Sub};usenum_traits::{One, Zero};userelp_num::Abs;pubtraitField =
Zero +
One +
Neg<Output=Self> +
Sub<Output=Self> +
Abs +
Eq +
Ord +
Debug +
Display +
Clone +
;