pub struct ResolvedWorkflow {
pub name: String,
pub package: Option<String>,
pub bin: Option<String>,
pub manifest_path: PathBuf,
pub working_dir: PathBuf,
pub default_task: Option<String>,
pub description: Option<String>,
}Fields§
§name: String§package: Option<String>§bin: Option<String>§manifest_path: PathBuf§working_dir: PathBuf§default_task: Option<String>§description: Option<String>Trait Implementations§
Source§impl Clone for ResolvedWorkflow
impl Clone for ResolvedWorkflow
Source§fn clone(&self) -> ResolvedWorkflow
fn clone(&self) -> ResolvedWorkflow
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 ResolvedWorkflow
impl RefUnwindSafe for ResolvedWorkflow
impl Send for ResolvedWorkflow
impl Sync for ResolvedWorkflow
impl Unpin for ResolvedWorkflow
impl UnsafeUnpin for ResolvedWorkflow
impl UnwindSafe for ResolvedWorkflow
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