negative is None
(&self)
| 31 | |
| 32 | // negative is None |
| 33 | pub fn max_length(&self) -> Option<usize> { |
| 34 | self.max_length |
| 35 | .into_option() |
| 36 | .and_then(|ArgSize { value }| usize::try_from(value).ok()) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | pub trait Decompressor { |
no test coverage detected