2020-07-07 22:45:32 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
2019-09-30 12:10:35 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct RustConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
2019-09-30 12:10:35 +00:00
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for RustConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
RustConfig {
|
2020-07-07 22:45:32 +00:00
|
|
|
format: "via [$symbol$version]($style) ",
|
|
|
|
symbol: "🦀 ",
|
|
|
|
style: "bold red",
|
2019-09-30 12:10:35 +00:00
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|