(&self)
| 829 | |
| 830 | impl ModelValidator<ValidationError> for CanisterMethod { |
| 831 | fn validate(&self) -> ModelValidatorResult<ValidationError> { |
| 832 | EnsureExternalCanister::ensure_external_canister(self.canister_id)?; |
| 833 | |
| 834 | Ok(()) |
| 835 | } |
| 836 | } |
| 837 | |
| 838 | #[storable] |
no test coverage detected