//! `serde` compatible version of the container theme.
useserde::{ Deserialize, Serialize };#[derive(Clone, Debug, Deserialize, Serialize)]pubstructProgressBar{/// Key to the background color.
pubbackground: String,
/// Key to the bar color.
pubbar: String,
/// Border radius.
pubradius:f32,
}