apollo-configuration 0.4.0

A typed, friendly configuration system for Apollo products.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Validate implementation for `Arc<T>`.

use std::sync::Arc;

use crate::ErrorCollector;
use crate::Validate;

impl<T: Validate> Validate for Arc<T> {
    fn validate(&self, errors: ErrorCollector<'_>) {
        (**self).validate(errors);
    }
}