pub struct SettingSection {
pub name: String,
pub items: Vec<SettingItem>,
}Expand description
A section grouping related settings
Fields§
§name: StringSection name (e.g., “Editor”, “Cursor”, “Window”)
items: Vec<SettingItem>Settings in this section
Trait Implementations§
Source§impl Clone for SettingSection
impl Clone for SettingSection
Source§fn clone(&self) -> SettingSection
fn clone(&self) -> SettingSection
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 moreAuto Trait Implementations§
impl Freeze for SettingSection
impl RefUnwindSafe for SettingSection
impl Send for SettingSection
impl Sync for SettingSection
impl Unpin for SettingSection
impl UnwindSafe for SettingSection
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