pub struct ExecMsg {
pub cmd: String,
pub args: Vec<String>,
}Expand description
ExecMsg is sent internally to trigger command execution.
Fields§
§cmd: StringCommand name.
args: Vec<String>Command arguments.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExecMsg
impl RefUnwindSafe for ExecMsg
impl Send for ExecMsg
impl Sync for ExecMsg
impl Unpin for ExecMsg
impl UnsafeUnpin for ExecMsg
impl UnwindSafe for ExecMsg
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