Struct concourse_resource::BuildMetadata [−][src]
When used in a "get" or "put" step, metadata about the running build is made available via environment variables.
If the build is a one-off, name, job_name, pipeline_name, and pipeline_instance_vars
will be None. pipeline_instance_vars will also be None if the build's pipeline is not a
pipeline instance (i.e. it is a regular pipeline).
Fields
id: StringThe internal identifier for the build. Right now this is numeric but it may become a guid in the future. Treat it as an absolute reference to the build.
name: Option<String>The build number within the build's job.
job_name: Option<String>The name of the build's job.
pipeline_name: Option<String>The pipeline that the build's job lives in.
pipeline_instance_vars: Option<Map<String, Value>>The pipeline's instance vars, used to differentiate pipeline instances.
team_name: StringThe team that the build belongs to.
atc_external_url: StringThe public URL for your ATC; useful for debugging.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BuildMetadata[src]
impl Send for BuildMetadata[src]
impl Sync for BuildMetadata[src]
impl Unpin for BuildMetadata[src]
impl UnwindSafe for BuildMetadata[src]
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
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.
pub 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>,