pub struct MissionRun {
pub label: String,
pub command: String,
}Expand description
Required validation or docs command for a mission.
Fields§
§label: StringShort label identifying the command.
command: StringShell command to run.
Implementations§
Trait Implementations§
Source§impl Clone for MissionRun
impl Clone for MissionRun
Source§fn clone(&self) -> MissionRun
fn clone(&self) -> MissionRun
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 moreSource§impl Debug for MissionRun
impl Debug for MissionRun
impl Eq for MissionRun
Source§impl PartialEq for MissionRun
impl PartialEq for MissionRun
Source§fn eq(&self, other: &MissionRun) -> bool
fn eq(&self, other: &MissionRun) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MissionRun
Auto Trait Implementations§
impl Freeze for MissionRun
impl RefUnwindSafe for MissionRun
impl Send for MissionRun
impl Sync for MissionRun
impl Unpin for MissionRun
impl UnsafeUnpin for MissionRun
impl UnwindSafe for MissionRun
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