Add actual value information
(mut self, actual: impl Into<String>)
| 99 | |
| 100 | /// Add actual value information |
| 101 | pub fn with_actual(mut self, actual: impl Into<String>) -> Self { |
| 102 | self.actual = Some(actual.into()); |
| 103 | self |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | /// A validation rule |
no outgoing calls