pub trait PartialConfigExt {
// Required methods
fn list_keys(&self) -> Vec<String>;
fn get_value(&self, key: &str) -> Option<String>;
fn count_set_fields(&self) -> usize;
}Expand description
Extension trait for PartialConfig to get list of keys
Required Methods§
Sourcefn count_set_fields(&self) -> usize
fn count_set_fields(&self) -> usize
Count number of fields that are Some