pub struct ResolvedTask {Show 14 fields
pub name: String,
pub source: RunSource,
pub command_preview: String,
pub sub_tasks: Vec<String>,
pub parallel: bool,
pub use_shell: bool,
pub exec: Vec<String>,
pub shell: String,
pub dir: String,
pub env: HashMap<String, String>,
pub timeout: Duration,
pub retries: i32,
pub retry_backoff: Duration,
pub notify_on: String,
}Fields§
§name: String§source: RunSource§command_preview: String§sub_tasks: Vec<String>§parallel: bool§use_shell: bool§exec: Vec<String>§shell: String§dir: String§env: HashMap<String, String>§timeout: Duration§retries: i32§retry_backoff: Duration§notify_on: StringTrait Implementations§
Source§impl Clone for ResolvedTask
impl Clone for ResolvedTask
Source§fn clone(&self) -> ResolvedTask
fn clone(&self) -> ResolvedTask
Returns a duplicate of the value. Read more
1.0.0 · 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 ResolvedTask
impl RefUnwindSafe for ResolvedTask
impl Send for ResolvedTask
impl Sync for ResolvedTask
impl Unpin for ResolvedTask
impl UnsafeUnpin for ResolvedTask
impl UnwindSafe for ResolvedTask
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