pub struct ArgGroup {
pub name: String,
pub description: Option<String>,
pub args: Vec<ArgInfo>,
}Expand description
A group of related arguments.
Fields§
§name: StringGroup name.
description: Option<String>Group description.
args: Vec<ArgInfo>Arguments in this group.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ArgGroup
impl RefUnwindSafe for ArgGroup
impl Send for ArgGroup
impl Sync for ArgGroup
impl Unpin for ArgGroup
impl UnwindSafe for ArgGroup
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