#[non_exhaustive]pub struct PostdeployJob {
pub actions: Vec<String>,
/* private fields */
}
Expand description
A postdeploy Job.
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.actions: Vec<String>
Output only. The custom actions that the postdeploy Job executes.
Implementations§
Source§impl PostdeployJob
impl PostdeployJob
pub fn new() -> Self
Sourcepub fn set_actions<T, V>(self, v: T) -> Self
pub fn set_actions<T, V>(self, v: T) -> Self
Sets the value of actions.
Trait Implementations§
Source§impl Clone for PostdeployJob
impl Clone for PostdeployJob
Source§fn clone(&self) -> PostdeployJob
fn clone(&self) -> PostdeployJob
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 PostdeployJob
impl Debug for PostdeployJob
Source§impl Default for PostdeployJob
impl Default for PostdeployJob
Source§fn default() -> PostdeployJob
fn default() -> PostdeployJob
Returns the “default value” for a type. Read more
Source§impl Message for PostdeployJob
impl Message for PostdeployJob
Source§impl PartialEq for PostdeployJob
impl PartialEq for PostdeployJob
impl StructuralPartialEq for PostdeployJob
Auto Trait Implementations§
impl Freeze for PostdeployJob
impl RefUnwindSafe for PostdeployJob
impl Send for PostdeployJob
impl Sync for PostdeployJob
impl Unpin for PostdeployJob
impl UnwindSafe for PostdeployJob
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