Struct azure_devops_rust_api::release::models::BaseDeploymentInput
source · pub struct BaseDeploymentInput {
pub condition: Option<String>,
pub job_cancel_timeout_in_minutes: Option<i32>,
pub override_inputs: Option<Value>,
pub timeout_in_minutes: Option<i32>,
}
Expand description
Fields§
§condition: Option<String>
Gets or sets the job condition.
job_cancel_timeout_in_minutes: Option<i32>
Gets or sets the job cancel timeout in minutes for deployment which are cancelled by user for this release environment.
override_inputs: Option<Value>
Gets or sets the override inputs.
timeout_in_minutes: Option<i32>
Gets or sets the job execution timeout in minutes for deployment which are queued against this release environment.
Implementations§
Trait Implementations§
source§impl Clone for BaseDeploymentInput
impl Clone for BaseDeploymentInput
source§fn clone(&self) -> BaseDeploymentInput
fn clone(&self) -> BaseDeploymentInput
Returns a copy 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 BaseDeploymentInput
impl Debug for BaseDeploymentInput
source§impl Default for BaseDeploymentInput
impl Default for BaseDeploymentInput
source§fn default() -> BaseDeploymentInput
fn default() -> BaseDeploymentInput
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for BaseDeploymentInput
impl<'de> Deserialize<'de> for BaseDeploymentInput
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 BaseDeploymentInput
impl PartialEq for BaseDeploymentInput
source§fn eq(&self, other: &BaseDeploymentInput) -> bool
fn eq(&self, other: &BaseDeploymentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for BaseDeploymentInput
impl Serialize for BaseDeploymentInput
impl StructuralPartialEq for BaseDeploymentInput
Auto Trait Implementations§
impl RefUnwindSafe for BaseDeploymentInput
impl Send for BaseDeploymentInput
impl Sync for BaseDeploymentInput
impl Unpin for BaseDeploymentInput
impl UnwindSafe for BaseDeploymentInput
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