use super::*; #[derive(Debug)] pub struct Bytes; impl Conversion for Bytes { const UNIT: &'static str = "bytes"; type Output = u64; fn convert(&self, input: &str) -> Result { } }