pub enum Scope {
Everything,
Pipeline(PipelineName),
}Expand description
Which workflow to draw.
A factory holds several pipelines and they are genuinely separate workflows: a nightly sweep has nothing to do with taking a work item to a pull request. Drawing them together produces one tangle that reads as a single, very confused process — which is what a reader concludes.
Variants§
Everything
Every pipeline and every route in the factory.
Pipeline(PipelineName)
Only what this pipeline sets in motion.
Implementations§
Trait Implementations§
impl Eq for Scope
impl StructuralPartialEq for Scope
Auto Trait Implementations§
impl Freeze for Scope
impl RefUnwindSafe for Scope
impl Send for Scope
impl Sync for Scope
impl Unpin for Scope
impl UnsafeUnpin for Scope
impl UnwindSafe for Scope
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