pub struct ShellCmd {
pub name: String,
pub description: Option<String>,
pub cmd: String,
pub args: Option<Vec<ShellCmdArg>>,
pub out_para: Option<(u32, String)>,
}Fields§
§name: String§description: Option<String>§cmd: String§args: Option<Vec<ShellCmdArg>>§out_para: Option<(u32, String)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ShellCmd
impl RefUnwindSafe for ShellCmd
impl Send for ShellCmd
impl Sync for ShellCmd
impl Unpin for ShellCmd
impl UnwindSafe for ShellCmd
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