pub struct ResumeCommand {
pub command: String,
pub args: Vec<String>,
}Expand description
Command + args that resume the DevFlow workflow.
Fields§
§command: StringExecutable name.
args: Vec<String>Command arguments.
Trait Implementations§
Source§impl Clone for ResumeCommand
impl Clone for ResumeCommand
Source§fn clone(&self) -> ResumeCommand
fn clone(&self) -> ResumeCommand
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 ResumeCommand
impl Debug for ResumeCommand
Source§impl<'de> Deserialize<'de> for ResumeCommand
impl<'de> Deserialize<'de> for ResumeCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ResumeCommand
Source§impl PartialEq for ResumeCommand
impl PartialEq for ResumeCommand
Source§impl Serialize for ResumeCommand
impl Serialize for ResumeCommand
impl StructuralPartialEq for ResumeCommand
Auto Trait Implementations§
impl Freeze for ResumeCommand
impl RefUnwindSafe for ResumeCommand
impl Send for ResumeCommand
impl Sync for ResumeCommand
impl Unpin for ResumeCommand
impl UnsafeUnpin for ResumeCommand
impl UnwindSafe for ResumeCommand
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