Closed
Description
Failed to deserialize camelcase fields for yaml file
https://github.com/vladgon/rust/blob/49854f6c3d02bf7ae4a8d123ac9ecfbbe3959a56/wspace/wg_util/src/common/config/model.rs#L24
#[derive(Deserialize, Serialize, Debug)]
#[allow(non_snake_case)]
pub struct Kafka {
pub broker: String,
pub topic: String,
pub pollSleep: u64, //<---
}
kafka:
broker: localhost:29092
topic: rust
pollSleep: 1000