pub struct SettingsTab {
pub id: String,
pub title: String,
pub icon: Option<String>,
pub description: Option<String>,
pub groups: Vec<SettingsGroup>,
}Fields§
§id: String§title: String§icon: Option<String>§description: Option<String>§groups: Vec<SettingsGroup>Trait Implementations§
Source§impl Clone for SettingsTab
impl Clone for SettingsTab
Source§fn clone(&self) -> SettingsTab
fn clone(&self) -> SettingsTab
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 moreSource§impl Debug for SettingsTab
impl Debug for SettingsTab
Source§impl<'de> Deserialize<'de> for SettingsTab
impl<'de> Deserialize<'de> for SettingsTab
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 SettingsTab
impl RefUnwindSafe for SettingsTab
impl Send for SettingsTab
impl Sync for SettingsTab
impl Unpin for SettingsTab
impl UnsafeUnpin for SettingsTab
impl UnwindSafe for SettingsTab
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