rust_decouple/
traits.rs

1pub trait Decouple {
2    type Error;
3    fn parse() -> Result<Self, Self::Error>
4    where
5        Self: Sized;
6}