pub struct AppSwitches {
pub skip_serve: bool,
pub skip_default_css: bool,
}Expand description
Struct for defining the global switches to drive the initialization of the web app. This struct works hand in hand with AppComponents.
Fields§
§skip_serve: bool§skip_default_css: boolTrait Implementations§
Source§impl Debug for AppSwitches
impl Debug for AppSwitches
Source§impl Default for AppSwitches
impl Default for AppSwitches
Source§fn default() -> AppSwitches
fn default() -> AppSwitches
Returns the “default value” for a type. Read more
Source§impl PartialEq for AppSwitches
impl PartialEq for AppSwitches
impl StructuralPartialEq for AppSwitches
Auto Trait Implementations§
impl Freeze for AppSwitches
impl RefUnwindSafe for AppSwitches
impl Send for AppSwitches
impl Sync for AppSwitches
impl Unpin for AppSwitches
impl UnsafeUnpin for AppSwitches
impl UnwindSafe for AppSwitches
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