(&self)
| 369 | |
| 370 | impl ModelValidator<RegistryError> for WasmModuleRegistryValue { |
| 371 | fn validate(&self) -> ModelValidatorResult<RegistryError> { |
| 372 | validate_wasm_module_version(&self.version)?; |
| 373 | |
| 374 | Ok(()) |
| 375 | } |
| 376 | } |
| 377 | |
| 378 | fn validate_chars(field: &str, content: &str) -> ModelValidatorResult<RegistryError> { |
no test coverage detected