#[non_exhaustive]pub struct CustomTargetDeployMetadata {
pub skip_message: String,
/* private fields */
}
Expand description
CustomTargetDeployMetadata contains information from a Custom Target deploy operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.skip_message: String
Output only. Skip message provided in the results of a custom deploy operation.
Implementations§
Source§impl CustomTargetDeployMetadata
impl CustomTargetDeployMetadata
pub fn new() -> Self
Sourcepub fn set_skip_message<T: Into<String>>(self, v: T) -> Self
pub fn set_skip_message<T: Into<String>>(self, v: T) -> Self
Sets the value of skip_message.
Trait Implementations§
Source§impl Clone for CustomTargetDeployMetadata
impl Clone for CustomTargetDeployMetadata
Source§fn clone(&self) -> CustomTargetDeployMetadata
fn clone(&self) -> CustomTargetDeployMetadata
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 CustomTargetDeployMetadata
impl Debug for CustomTargetDeployMetadata
Source§impl Default for CustomTargetDeployMetadata
impl Default for CustomTargetDeployMetadata
Source§fn default() -> CustomTargetDeployMetadata
fn default() -> CustomTargetDeployMetadata
Returns the “default value” for a type. Read more
Source§impl Message for CustomTargetDeployMetadata
impl Message for CustomTargetDeployMetadata
impl StructuralPartialEq for CustomTargetDeployMetadata
Auto Trait Implementations§
impl Freeze for CustomTargetDeployMetadata
impl RefUnwindSafe for CustomTargetDeployMetadata
impl Send for CustomTargetDeployMetadata
impl Sync for CustomTargetDeployMetadata
impl Unpin for CustomTargetDeployMetadata
impl UnwindSafe for CustomTargetDeployMetadata
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