pub struct BasicConfig {
pub log_level: String,
pub ignore_self_message: bool,
pub prefix: Vec<String>,
}Fields§
§log_level: String§ignore_self_message: bool§prefix: Vec<String>Trait Implementations§
Source§impl Clone for BasicConfig
impl Clone for BasicConfig
Source§fn clone(&self) -> BasicConfig
fn clone(&self) -> BasicConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BasicConfig
impl Debug for BasicConfig
Source§impl<'de> Deserialize<'de> for BasicConfig
impl<'de> Deserialize<'de> for BasicConfig
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 BasicConfig
impl RefUnwindSafe for BasicConfig
impl Send for BasicConfig
impl Sync for BasicConfig
impl Unpin for BasicConfig
impl UnsafeUnpin for BasicConfig
impl UnwindSafe for BasicConfig
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