1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::convert::Infallible;
use crate::objects::Surface;
use super::{Validate, ValidationConfig};
impl Validate for Surface {
type Error = Infallible;
fn validate_with_config(
&self,
_: &ValidationConfig,
) -> Result<(), Self::Error> {
Ok(())
}
}