pub struct RunnerBuildResp {
pub build_job_id: Option<String>,
pub image: Option<String>,
pub index: Option<String>,
pub runner_pool: Option<String>,
pub status: Option<String>,
pub target: Option<String>,
}Fields§
§build_job_id: Option<String>BuildJobID is the queued build’s id, and what its progress is read by.
image: Option<String>Image is the ref the image lane will push.
index: Option<String>Index is the binaries.json URL the artifact lane will publish.
runner_pool: Option<String>RunnerPool is the runner class the build was placed on.
status: Option<String>Status is queued — the build was accepted and has not finished.
target: Option<String>Target is the multi-stage build target, echoed back.
Implementations§
Source§impl RunnerBuildResp
impl RunnerBuildResp
pub fn new() -> RunnerBuildResp
Trait Implementations§
Source§impl Clone for RunnerBuildResp
impl Clone for RunnerBuildResp
Source§fn clone(&self) -> RunnerBuildResp
fn clone(&self) -> RunnerBuildResp
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RunnerBuildResp
impl Debug for RunnerBuildResp
Source§impl Default for RunnerBuildResp
impl Default for RunnerBuildResp
Source§fn default() -> RunnerBuildResp
fn default() -> RunnerBuildResp
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunnerBuildResp
impl<'de> Deserialize<'de> for RunnerBuildResp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RunnerBuildResp
impl PartialEq for RunnerBuildResp
Source§impl Serialize for RunnerBuildResp
impl Serialize for RunnerBuildResp
impl StructuralPartialEq for RunnerBuildResp
Auto Trait Implementations§
impl Freeze for RunnerBuildResp
impl RefUnwindSafe for RunnerBuildResp
impl Send for RunnerBuildResp
impl Sync for RunnerBuildResp
impl Unpin for RunnerBuildResp
impl UnsafeUnpin for RunnerBuildResp
impl UnwindSafe for RunnerBuildResp
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