Skip to main content

apollo_configuration/types/
boxed.rs

1//! Validate implementation for `Box<T>`.
2
3use crate::ErrorCollector;
4use crate::Validate;
5
6impl<T: Validate> Validate for Box<T> {
7    fn validate(&self, errors: ErrorCollector<'_>) {
8        (**self).validate(errors);
9    }
10}