podman_rest_client/v5/models/log_config.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// LogConfig represents the logging configuration of the container.
4pub struct LogConfig {
5 #[serde(rename = "Config")]
6 pub config: Option<std::collections::HashMap<String, String>>,
7 #[serde(rename = "Type")]
8 pub r#type: Option<String>,
9}