use super::*;
#[derive(Clone, Copy, Debug)]
pub struct Config {
pub digits: NonZeroUsize,
pub precision: u32,
pub rounding_mode: Round,
}
impl Default for Config {
fn default() -> Self {
Self {
digits: NonZeroUsize::new(16).unwrap(),
precision: 1024,
rounding_mode: Round::Nearest,
}
}
}
impl Config {
pub(crate) fn precision(self) -> u32 {
self.precision.max(1)
}
}