2022-03-26 10:42:19 +01:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-01-30 21:31:26 +01:00
|
|
|
|
2022-03-26 10:42:19 +01:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2022-09-09 14:59:38 +02:00
|
|
|
#[cfg_attr(
|
|
|
|
|
feature = "config-schema",
|
|
|
|
|
derive(schemars::JsonSchema),
|
|
|
|
|
schemars(deny_unknown_fields)
|
|
|
|
|
)]
|
2022-03-26 10:42:19 +01:00
|
|
|
#[serde(default)]
|
2022-01-30 21:31:26 +01:00
|
|
|
pub struct LocalipConfig<'a> {
|
|
|
|
|
pub ssh_only: bool,
|
|
|
|
|
pub format: &'a str,
|
|
|
|
|
pub style: &'a str,
|
|
|
|
|
pub disabled: bool,
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-09 19:49:59 +01:00
|
|
|
impl Default for LocalipConfig<'_> {
|
2022-01-30 21:31:26 +01:00
|
|
|
fn default() -> Self {
|
|
|
|
|
LocalipConfig {
|
|
|
|
|
ssh_only: true,
|
|
|
|
|
format: "[$localipv4]($style) ",
|
|
|
|
|
style: "yellow bold",
|
|
|
|
|
disabled: true,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|