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::{Validate2, ValidationConfig};

impl Validate2 for Surface {
    type Error = Infallible;

    fn validate_with_config(
        &self,
        _: &ValidationConfig,
    ) -> Result<(), Self::Error> {
        Ok(())
    }
}