pub struct DrawerSection {
pub label: Option<String>,
pub items: Vec<DrawerItem>,
}Expand description
A section in the navigation drawer with a label and items.
Fields§
§label: Option<String>§items: Vec<DrawerItem>Auto Trait Implementations§
impl Freeze for DrawerSection
impl !RefUnwindSafe for DrawerSection
impl Send for DrawerSection
impl Sync for DrawerSection
impl Unpin for DrawerSection
impl UnsafeUnpin for DrawerSection
impl !UnwindSafe for DrawerSection
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