pub struct DevelopmentConfig {
pub debug_enabled: bool,
pub profiling_enabled: bool,
pub log_level: String,
}Expand description
Development-specific configuration
Fields§
§debug_enabled: bool§profiling_enabled: bool§log_level: StringTrait Implementations§
Source§impl Clone for DevelopmentConfig
impl Clone for DevelopmentConfig
Source§fn clone(&self) -> DevelopmentConfig
fn clone(&self) -> DevelopmentConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 DevelopmentConfig
impl Debug for DevelopmentConfig
Source§impl Default for DevelopmentConfig
impl Default for DevelopmentConfig
Source§impl<'de> Deserialize<'de> for DevelopmentConfig
impl<'de> Deserialize<'de> for DevelopmentConfig
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 DevelopmentConfig
impl RefUnwindSafe for DevelopmentConfig
impl Send for DevelopmentConfig
impl Sync for DevelopmentConfig
impl Unpin for DevelopmentConfig
impl UnwindSafe for DevelopmentConfig
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