Skip to main content

auto_di/
configuration.rs

1use crate::DiError;
2
3/// Binds a strongly typed configuration value from the environment.
4pub trait ConfigurationProperties: Sized {
5    fn from_environment() -> Result<Self, DiError>;
6}