pub struct WizardFeatureFlags {
pub wifi: bool,
pub mqtt: bool,
pub ble: bool,
pub tls: bool,
}Expand description
Connectivity/security feature toggles a template requests in its generated config.
Fields§
§wifi: boolEnable Wi-Fi support.
mqtt: boolEnable MQTT support.
ble: boolEnable Bluetooth Low Energy support.
tls: boolEnable TLS support.
Trait Implementations§
Source§impl Clone for WizardFeatureFlags
impl Clone for WizardFeatureFlags
Source§fn clone(&self) -> WizardFeatureFlags
fn clone(&self) -> WizardFeatureFlags
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 moreimpl Copy for WizardFeatureFlags
Auto Trait Implementations§
impl Freeze for WizardFeatureFlags
impl RefUnwindSafe for WizardFeatureFlags
impl Send for WizardFeatureFlags
impl Sync for WizardFeatureFlags
impl Unpin for WizardFeatureFlags
impl UnsafeUnpin for WizardFeatureFlags
impl UnwindSafe for WizardFeatureFlags
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