pub struct RunProfileConfig {
pub hot_reload: bool,
pub watch: bool,
pub live_reload_port: u16,
pub features: Option<HashMap<String, bool>>,
}Expand description
Run-specific profile configuration.
Fields§
§hot_reload: boolEnable hot-reload.
watch: boolEnable watch mode.
live_reload_port: u16Live-reload port.
features: Option<HashMap<String, bool>>Additional features enabled for this profile.
Trait Implementations§
Source§impl Clone for RunProfileConfig
impl Clone for RunProfileConfig
Source§fn clone(&self) -> RunProfileConfig
fn clone(&self) -> RunProfileConfig
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 RunProfileConfig
impl Debug for RunProfileConfig
Source§impl<'de> Deserialize<'de> for RunProfileConfig
impl<'de> Deserialize<'de> for RunProfileConfig
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 RunProfileConfig
impl RefUnwindSafe for RunProfileConfig
impl Send for RunProfileConfig
impl Sync for RunProfileConfig
impl Unpin for RunProfileConfig
impl UnwindSafe for RunProfileConfig
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