Skip to main content

bullet_exchange_interface/decimals/
mod.rs

1pub mod fixed_positive_decimal;
2pub mod macros;
3pub mod ops;
4pub mod positive_decimal;
5pub mod surrogate_decimal;
6
7pub use fixed_positive_decimal::*;
8pub use ops::*;
9pub use positive_decimal::*;
10pub use surrogate_decimal::*;
11
12pub enum RoundingMode {
13    Up,
14    Down,
15}