pub struct ClassifiedCommand {
pub program: String,
pub args: Vec<String>,
pub kind: SignalKind,
pub subcommand: Option<String>,
pub is_pipeline: bool,
}Fields§
§program: String§args: Vec<String>§kind: SignalKind§subcommand: Option<String>§is_pipeline: boolImplementations§
Trait Implementations§
Source§impl Clone for ClassifiedCommand
impl Clone for ClassifiedCommand
Source§fn clone(&self) -> ClassifiedCommand
fn clone(&self) -> ClassifiedCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ClassifiedCommand
impl RefUnwindSafe for ClassifiedCommand
impl Send for ClassifiedCommand
impl Sync for ClassifiedCommand
impl Unpin for ClassifiedCommand
impl UnsafeUnpin for ClassifiedCommand
impl UnwindSafe for ClassifiedCommand
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