pub enum Step {
GitClone {
url: String,
},
GitLabClone {
url: String,
},
Command {
command: String,
workdir: Option<String>,
},
}Expand description
This describes a step executed by a builder in buildbot This is used by the Builder struct to construct the Builder config file
Variants§
GitClone
Represents a git clone operation
GitLabClone
Represents a git clone operation targetting gitlab. The reason we need to know specifically about if the clone is from gitlab is because this also handles merge requests
Command
Represents a command line command
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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