CicdJob

Trait CicdJob 

Source
pub trait CicdJob {
    // Required methods
    fn list(&self, args: JobListBodyArgs) -> Result<Vec<Job>>;
    fn num_pages(&self, args: JobListBodyArgs) -> Result<Option<u32>>;
    fn num_resources(
        &self,
        args: JobListBodyArgs,
    ) -> Result<Option<NumberDeltaErr>>;
}

Required Methods§

Implementors§

Source§

impl<R: HttpRunner<Response = HttpResponse>> CicdJob for Github<R>

Source§

impl<R: HttpRunner<Response = HttpResponse>> CicdJob for Gitlab<R>