[][src]Enum rusty_ci::Step

pub enum Step {
    GitClone {
        url: String,
    },
    Command {
        command: String,
        workdir: Option<String>,
    },
}

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

Fields of GitClone

url: String
Command

Fields of Command

command: Stringworkdir: Option<String>

Methods

impl Step[src]

pub fn command<S: Display>(command: S, workdir: Option<S>) -> Self[src]

pub fn git_clone<S: Display>(url: S) -> Self[src]

Trait Implementations

impl Clone for Step[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Step[src]

impl Display for Step[src]

Auto Trait Implementations

impl Send for Step

impl Sync for Step

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]