pub struct DeployPhase {
pub name: Option<String>,
pub phase_type: Option<PhaseType>,
pub rank: Option<i32>,
pub ref_name: Option<String>,
pub workflow_tasks: Vec<WorkflowTask>,
}Fields§
§name: Option<String>Gets and sets the name of deploy phase.
phase_type: Option<PhaseType>Indicates the deploy phase type.
rank: Option<i32>Gets and sets the rank of deploy phase.
ref_name: Option<String>Gets and sets the reference name of deploy phase.
workflow_tasks: Vec<WorkflowTask>Gets and sets the workflow tasks for the deploy phase.
Implementations§
Source§impl DeployPhase
impl DeployPhase
Trait Implementations§
Source§impl Clone for DeployPhase
impl Clone for DeployPhase
Source§fn clone(&self) -> DeployPhase
fn clone(&self) -> DeployPhase
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 DeployPhase
impl Debug for DeployPhase
Source§impl Default for DeployPhase
impl Default for DeployPhase
Source§fn default() -> DeployPhase
fn default() -> DeployPhase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployPhase
impl<'de> Deserialize<'de> for DeployPhase
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 PartialEq for DeployPhase
impl PartialEq for DeployPhase
Source§impl Serialize for DeployPhase
impl Serialize for DeployPhase
impl StructuralPartialEq for DeployPhase
Auto Trait Implementations§
impl Freeze for DeployPhase
impl RefUnwindSafe for DeployPhase
impl Send for DeployPhase
impl Sync for DeployPhase
impl Unpin for DeployPhase
impl UnwindSafe for DeployPhase
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<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Source§fn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more