use std::{
    fmt,
    iter::Sum,
    ops::{Add, AddAssign, Sub},
};
#[derive(Clone, Copy, Default, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct JsonSize(usize);
impl fmt::Display for JsonSize {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}
impl Sub for JsonSize {
    type Output = JsonSize;
    #[inline]
    fn sub(mut self, rhs: Self) -> Self::Output {
        self.0 -= rhs.0;
        self
    }
}
impl Add for JsonSize {
    type Output = JsonSize;
    #[inline]
    fn add(mut self, rhs: Self) -> Self::Output {
        self.0 += rhs.0;
        self
    }
}
impl AddAssign for JsonSize {
    #[inline]
    fn add_assign(&mut self, rhs: Self) {
        self.0 += rhs.0;
    }
}
impl Sum for JsonSize {
    #[inline]
    fn sum<I: Iterator<Item = Self>>(iter: I) -> Self {
        let mut accum = 0;
        for val in iter {
            accum += val.get();
        }
        JsonSize::new(accum)
    }
}
impl From<usize> for JsonSize {
    #[inline]
    fn from(value: usize) -> Self {
        Self(value)
    }
}
impl JsonSize {
    #[must_use]
    #[inline]
    pub const fn new(size: usize) -> Self {
        Self(size)
    }
    #[must_use]
    #[inline]
    pub const fn zero() -> Self {
        Self(0)
    }
    #[must_use]
    #[inline]
    pub fn get(&self) -> usize {
        self.0
    }
}
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)]
#[allow(clippy::module_name_repetitions)]
pub struct NonZeroJsonSize(JsonSize);
impl NonZeroJsonSize {
    #[must_use]
    #[inline]
    pub fn new(size: JsonSize) -> Option<Self> {
        (size.0 > 0).then_some(NonZeroJsonSize(size))
    }
}
impl From<NonZeroJsonSize> for JsonSize {
    #[inline]
    fn from(value: NonZeroJsonSize) -> Self {
        value.0
    }
}