1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-31 07:30:52 +00:00
starship/src/configs/env_var.rs
2022-04-01 17:14:05 +02:00

29 lines
780 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(feature = "config-schema", derive(schemars::JsonSchema))]
#[serde(default)]
pub struct EnvVarConfig<'a> {
pub symbol: &'a str,
pub style: &'a str,
#[serde(skip_serializing_if = "Option::is_none")]
pub variable: Option<&'a str>,
#[serde(skip_serializing_if = "Option::is_none")]
pub default: Option<&'a str>,
pub format: &'a str,
pub disabled: bool,
}
impl<'a> Default for EnvVarConfig<'a> {
fn default() -> Self {
EnvVarConfig {
symbol: "",
style: "black bold dimmed",
variable: None,
default: None,
format: "with [$env_value]($style) ",
disabled: false,
}
}
}