| 93 | /// A cell used for bucket and validations |
| 94 | #[derive(Default)] |
| 95 | pub struct ValidateCell { |
| 96 | /// Indication of whether the cell is used or not |
| 97 | pub used: bool, |
| 98 | /// The internal value |
| 99 | pub value: i32, |
| 100 | } |
| 101 | |
| 102 | impl ValidateCell { |
| 103 | /// Get the `used` bit |
nothing calls this directly
no outgoing calls
no test coverage detected