pub struct CommandDef {
pub name: &'static str,
pub subs: &'static [SubDef],
pub bare_flags: &'static [&'static str],
pub help_eligible: bool,
pub url: &'static str,
}Fields§
§name: &'static str§subs: &'static [SubDef]§bare_flags: &'static [&'static str]§help_eligible: bool§url: &'static strImplementations§
Auto Trait Implementations§
impl Freeze for CommandDef
impl RefUnwindSafe for CommandDef
impl Send for CommandDef
impl Sync for CommandDef
impl Unpin for CommandDef
impl UnsafeUnpin for CommandDef
impl UnwindSafe for CommandDef
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