Set whether to validate on write operations
(&mut self, enabled: bool)
| 334 | |
| 335 | /// Set whether to validate on write operations |
| 336 | pub fn set_validate_on_write(&mut self, enabled: bool) { |
| 337 | self.set_parameter( |
| 338 | "schema_validate_on_write".to_string(), |
| 339 | Value::Boolean(enabled), |
| 340 | ); |
| 341 | } |
| 342 | |
| 343 | /// Get whether to validate on write operations (default: true) |
| 344 | pub fn get_validate_on_write(&self) -> bool { |
nothing calls this directly
no test coverage detected