#[non_exhaustive]pub struct PredeployJob {
pub actions: Vec<String>,
/* private fields */
}
Expand description
A predeploy 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 predeploy Job executes.
Implementations§
Source§impl PredeployJob
impl PredeployJob
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 PredeployJob
impl Clone for PredeployJob
Source§fn clone(&self) -> PredeployJob
fn clone(&self) -> PredeployJob
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 PredeployJob
impl Debug for PredeployJob
Source§impl Default for PredeployJob
impl Default for PredeployJob
Source§fn default() -> PredeployJob
fn default() -> PredeployJob
Returns the “default value” for a type. Read more
Source§impl Message for PredeployJob
impl Message for PredeployJob
Source§impl PartialEq for PredeployJob
impl PartialEq for PredeployJob
impl StructuralPartialEq for PredeployJob
Auto Trait Implementations§
impl Freeze for PredeployJob
impl RefUnwindSafe for PredeployJob
impl Send for PredeployJob
impl Sync for PredeployJob
impl Unpin for PredeployJob
impl UnwindSafe for PredeployJob
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