pub struct CleanerCategory {
pub name: String,
pub description: String,
pub items: Vec<CleanerItem>,
}Expand description
A named group of related CleanerItems (e.g. “User Land Cleaners”).
Fields§
§name: StringCategory display name.
description: StringCategory description.
items: Vec<CleanerItem>The cleaners that belong to this category.
Auto Trait Implementations§
impl Freeze for CleanerCategory
impl RefUnwindSafe for CleanerCategory
impl Send for CleanerCategory
impl Sync for CleanerCategory
impl Unpin for CleanerCategory
impl UnsafeUnpin for CleanerCategory
impl UnwindSafe for CleanerCategory
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