pub struct ExtensionSetting {
pub name: &'static str,
pub id: &'static str,
pub default_value: bool,
pub on_hint: &'static str,
pub off_hint: &'static str,
pub hidden: bool,
}
Fields§
§name: &'static str
§id: &'static str
§default_value: bool
§on_hint: &'static str
§off_hint: &'static str
Implementations§
Trait Implementations§
Source§impl Clone for ExtensionSetting
impl Clone for ExtensionSetting
Source§fn clone(&self) -> ExtensionSetting
fn clone(&self) -> ExtensionSetting
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 ExtensionSetting
impl Debug for ExtensionSetting
Source§impl Serialize for ExtensionSetting
impl Serialize for ExtensionSetting
impl Copy for ExtensionSetting
Auto Trait Implementations§
impl Freeze for ExtensionSetting
impl RefUnwindSafe for ExtensionSetting
impl Send for ExtensionSetting
impl Sync for ExtensionSetting
impl Unpin for ExtensionSetting
impl UnwindSafe for ExtensionSetting
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