[−][src]Struct jenkins_api::job::MatrixProject
A matrix project
Fields
name: StringName of the job
display_name: StringDisplay Name of the job
full_display_name: Option<String>Full Display Name of the job
full_name: Option<String>Full Name of the job
display_name_or_null: Option<String>Display Name of the job
url: StringURL for the job
actions: Vec<Option<CommonAction>>Actions of a job
buildable: boolIs the job buildable?
last_build: Option<ShortBuild<MatrixBuild>>Link to the last build
color: Option<BallColor>Ball Color for the status of the job
keep_dependencies: boolAre dependencies kept for this job?
next_build_number: u32Next build number
in_queue: boolIs this job currently in build queue
first_build: Option<ShortBuild<MatrixBuild>>Link to the first build
last_stable_build: Option<ShortBuild<MatrixBuild>>Link to the last stable build
last_unstable_build: Option<ShortBuild<MatrixBuild>>Link to the last unstable build
last_successful_build: Option<ShortBuild<MatrixBuild>>Link to the last successful build
last_unsuccessful_build: Option<ShortBuild<MatrixBuild>>Link to the last unsucressful build
last_completed_build: Option<ShortBuild<MatrixBuild>>Link to the last complete build
last_failed_build: Option<ShortBuild<MatrixBuild>>Link to the last failed build
builds: Vec<ShortBuild>List of builds of the job
health_report: Vec<HealthReport>HealthReport of the job
queue_item: Option<ShortQueueItem>Queue item of this job if it's waiting
description: StringDescription of the job
concurrent_build: boolIs concurrent build enabled for the job?
scm: CommonSCMSCM configured for the job
active_configurations: Vec<ShortJob<MatrixConfiguration>>Configurations for the job
upstream_projects: Vec<ShortJob>List of the upstream projects
downstream_projects: Vec<ShortJob>List of the downstream projects
label_expression: Option<String>Label expression
Trait Implementations
impl BuildableJob for MatrixProject[src]
fn build(&self, jenkins_client: &Jenkins) -> Result<ShortQueueItem>[src]
fn builder<'a, 'b, 'c, 'd>(
&'a self,
jenkins_client: &'b Jenkins
) -> Result<JobBuilder<'a, 'b, 'c, 'd>>[src]
&'a self,
jenkins_client: &'b Jenkins
) -> Result<JobBuilder<'a, 'b, 'c, 'd>>
impl Class for MatrixProject[src]
fn with_class() -> &'static str[src]
impl Debug for MatrixProject[src]
impl<'de> Deserialize<'de> for MatrixProject[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Job for MatrixProject[src]
fn url(&self) -> &str[src]
fn name(&self) -> &str[src]
fn enable(&self, jenkins_client: &Jenkins) -> Result<()>[src]
fn disable(&self, jenkins_client: &Jenkins) -> Result<()>[src]
fn add_to_view<'a, V>(
&self,
jenkins_client: &Jenkins,
view_name: V
) -> Result<()> where
V: Into<ViewName<'a>>, [src]
&self,
jenkins_client: &Jenkins,
view_name: V
) -> Result<()> where
V: Into<ViewName<'a>>,
fn remove_from_view<'a, V>(
&self,
jenkins_client: &Jenkins,
view_name: V
) -> Result<()> where
V: Into<ViewName<'a>>, [src]
&self,
jenkins_client: &Jenkins,
view_name: V
) -> Result<()> where
V: Into<ViewName<'a>>,
fn get_config_xml(&self, jenkins_client: &Jenkins) -> Result<String>[src]
impl SCMPollable for MatrixProject[src]
Auto Trait Implementations
impl RefUnwindSafe for MatrixProject
impl Send for MatrixProject
impl Sync for MatrixProject
impl Unpin for MatrixProject
impl UnwindSafe for MatrixProject
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,