pub struct CmdEntry {
pub name: String,
pub priority: CmdPriority,
pub enabled: bool,
pub tag: Option<String>,
}Expand description
A single entry in the command list.
Fields§
§name: String§priority: CmdPriority§enabled: bool§tag: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CmdEntry
impl RefUnwindSafe for CmdEntry
impl Send for CmdEntry
impl Sync for CmdEntry
impl Unpin for CmdEntry
impl UnsafeUnpin for CmdEntry
impl UnwindSafe for CmdEntry
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