pub struct TargetRender {
pub failure_cause: Option<String>,
pub failure_message: Option<String>,
pub metadata: Option<RenderMetadata>,
pub rendering_build: Option<String>,
pub rendering_state: Option<String>,
}
Expand description
Details of rendering for a single target.
This type is not used in any activity, and only used as part of another schema.
Fields§
§failure_cause: Option<String>
Output only. Reason this render failed. This will always be unspecified while the render in progress.
failure_message: Option<String>
Output only. Additional information about the render failure, if available.
metadata: Option<RenderMetadata>
Output only. Metadata related to the Release
render for this Target.
rendering_build: Option<String>
Output only. The resource name of the Cloud Build Build
object that is used to render the manifest for this target. Format is projects/{project}/locations/{location}/builds/{build}
.
rendering_state: Option<String>
Output only. Current state of the render operation for this Target.
Trait Implementations§
Source§impl Clone for TargetRender
impl Clone for TargetRender
Source§fn clone(&self) -> TargetRender
fn clone(&self) -> TargetRender
Returns a duplicate of the value. Read more
1.0.0 · 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 TargetRender
impl Debug for TargetRender
Source§impl Default for TargetRender
impl Default for TargetRender
Source§fn default() -> TargetRender
fn default() -> TargetRender
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetRender
impl<'de> Deserialize<'de> for TargetRender
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 Serialize for TargetRender
impl Serialize for TargetRender
impl Part for TargetRender
Auto Trait Implementations§
impl Freeze for TargetRender
impl RefUnwindSafe for TargetRender
impl Send for TargetRender
impl Sync for TargetRender
impl Unpin for TargetRender
impl UnwindSafe for TargetRender
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more