pub struct ChainParts {
pub name: String,
pub primary: Option<String>,
pub args: Vec<Arg>,
}Expand description
Result of parsing a builder chain: command name, optional primary arg, and method args.
Fields§
§name: String§primary: Option<String>§args: Vec<Arg>Auto Trait Implementations§
impl Freeze for ChainParts
impl RefUnwindSafe for ChainParts
impl Send for ChainParts
impl Sync for ChainParts
impl Unpin for ChainParts
impl UnsafeUnpin for ChainParts
impl UnwindSafe for ChainParts
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