Struct azure_devops_rust_api::release::models::ControlOptions
source · pub struct ControlOptions {
pub always_run: Option<bool>,
pub continue_on_error: Option<bool>,
pub enabled: Option<bool>,
}
Expand description
Fields§
§always_run: Option<bool>
Always run the job.
continue_on_error: Option<bool>
Indicates whether to continue job on error or not.
enabled: Option<bool>
Indicates the job enabled or not.
Implementations§
Trait Implementations§
source§impl Clone for ControlOptions
impl Clone for ControlOptions
source§fn clone(&self) -> ControlOptions
fn clone(&self) -> ControlOptions
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 ControlOptions
impl Debug for ControlOptions
source§impl Default for ControlOptions
impl Default for ControlOptions
source§fn default() -> ControlOptions
fn default() -> ControlOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ControlOptions
impl<'de> Deserialize<'de> for ControlOptions
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 ControlOptions
impl PartialEq for ControlOptions
source§fn eq(&self, other: &ControlOptions) -> bool
fn eq(&self, other: &ControlOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ControlOptions
impl Serialize for ControlOptions
impl StructuralPartialEq for ControlOptions
Auto Trait Implementations§
impl RefUnwindSafe for ControlOptions
impl Send for ControlOptions
impl Sync for ControlOptions
impl Unpin for ControlOptions
impl UnwindSafe for ControlOptions
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