pub struct BuildFarmJobFull {Show 15 fields
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub build_log_url: Url,
pub builder_link: Url,
pub buildstate: BuildState,
pub can_be_cancelled: bool,
pub can_be_rescored: bool,
pub can_be_retried: bool,
pub date_first_dispatched: DateTime<Utc>,
pub datebuilt: DateTime<Utc>,
pub datecreated: DateTime<Utc>,
pub dependencies: Vec<String>,
pub title: String,
}Expand description
Representation of the build_farm_job-full resource
Fields§
§self_link: Option<Url>The canonical link to this resource.
web_link: Option<Url>The canonical human-addressable web link to this resource.
resource_type_link: Option<Url>The link to the WADL description of this resource.
http_etag: Option<String>The value of the HTTP ETag for this resource.
build_log_url: UrlBuild Log URL
A URL for the build log. None if there is no log available.
builder_link: UrlBuilder
The builder assigned to this job.
buildstate: BuildStateStatus
The current status of the job.
can_be_cancelled: boolCan be cancelled
Whether this build record can be cancelled.
can_be_rescored: boolCan be rescored
Whether this build record can be rescored manually.
can_be_retried: boolCan be retried
Whether this build record can be retried.
date_first_dispatched: DateTime<Utc>Date finished
The actual build start time. Set when the build is dispatched the first time and not changed in subsequent build attempts.
datebuilt: DateTime<Utc>Date finished
The timestamp when the build farm job was finished.
datecreated: DateTime<Utc>Date created
The timestamp when the build farm job was created.
dependencies: Vec<String>Dependencies
Debian-like dependency line that must be satisfied before attempting to build this request.
title: StringTitle
Implementations§
Source§impl BuildFarmJobFull
impl BuildFarmJobFull
Sourcepub fn self_(&self) -> Option<BuildFarmJob>
pub fn self_(&self) -> Option<BuildFarmJob>
The canonical link to this resource.
pub fn set_self_(&mut self, value: Option<BuildFarmJob>)
pub fn set_builder(&mut self, value: Builder)
Trait Implementations§
Source§impl Clone for BuildFarmJobFull
impl Clone for BuildFarmJobFull
Source§fn clone(&self) -> BuildFarmJobFull
fn clone(&self) -> BuildFarmJobFull
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more