Returns a list of all available runtime configurations with their current values and descriptions
(&self)
| 528 | |
| 529 | /// Returns a list of all available runtime configurations with their current values and descriptions |
| 530 | pub fn entries(&self) -> Vec<ConfigEntry> { |
| 531 | create_runtime_config_entries( |
| 532 | None, |
| 533 | Some("100G".to_string()), |
| 534 | None, |
| 535 | Some("50M".to_owned()), |
| 536 | Some("1M".to_owned()), |
| 537 | None, |
| 538 | Some("20M".to_owned()), |
| 539 | ) |
| 540 | } |
| 541 | |
| 542 | /// Generate documentation that can be included in the user guide |
| 543 | pub fn generate_config_markdown() -> String { |
no test coverage detected