| 3 | |
| 4 | #[derive(Debug, Default, Configuration)] |
| 5 | pub struct ExampleConfig { |
| 6 | pub server_addr: String, |
| 7 | #[confik(from = DbConfig)] |
| 8 | pub pg: deadpool_postgres::Config, |
| 9 | } |
| 10 | |
| 11 | #[derive(Debug, Deserialize)] |
| 12 | #[serde(transparent)] |
nothing calls this directly
no outgoing calls
no test coverage detected