pub struct ModCliSection {
pub name: Option<String>,
pub prefix: Option<String>,
pub banner: Option<String>,
pub theme: Option<String>,
pub delay: Option<u64>,
pub strict: Option<bool>,
pub force_shell: Option<bool>,
pub shell: Option<ShellConfig>,
pub messages: Option<MessageConfig>,
}
Fields§
§name: Option<String>
§prefix: Option<String>
§theme: Option<String>
§delay: Option<u64>
§strict: Option<bool>
§force_shell: Option<bool>
§shell: Option<ShellConfig>
§messages: Option<MessageConfig>
Trait Implementations§
Source§impl Debug for ModCliSection
impl Debug for ModCliSection
Source§impl<'de> Deserialize<'de> for ModCliSection
impl<'de> Deserialize<'de> for ModCliSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ModCliSection
impl RefUnwindSafe for ModCliSection
impl Send for ModCliSection
impl Sync for ModCliSection
impl Unpin for ModCliSection
impl UnwindSafe for ModCliSection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more