pub struct WorkflowSuggestion {
pub pattern: EmergePattern,
pub yaml: String,
pub target_path: PathBuf,
}Expand description
Suggestion for creating a workflow from a detected pattern.
Fields§
§pattern: EmergePatternThe source pattern.
yaml: StringGenerated YAML content.
target_path: PathBufSuggested workflow file path.
Trait Implementations§
Source§impl Clone for WorkflowSuggestion
impl Clone for WorkflowSuggestion
Source§fn clone(&self) -> WorkflowSuggestion
fn clone(&self) -> WorkflowSuggestion
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 WorkflowSuggestion
impl RefUnwindSafe for WorkflowSuggestion
impl Send for WorkflowSuggestion
impl Sync for WorkflowSuggestion
impl Unpin for WorkflowSuggestion
impl UnsafeUnpin for WorkflowSuggestion
impl UnwindSafe for WorkflowSuggestion
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