Struct azure_devops_rust_api::processes::models::RuleAction   
source · pub struct RuleAction {
    pub action_type: Option<ActionType>,
    pub target_field: Option<String>,
    pub value: Option<String>,
}Expand description
Action to take when the rule is triggered.
Fields§
§action_type: Option<ActionType>Type of action to take when the rule is triggered.
target_field: Option<String>Field on which the action should be taken.
value: Option<String>Value to apply on target field, once the action is taken.
Implementations§
source§impl RuleAction
 
impl RuleAction
Trait Implementations§
source§impl Clone for RuleAction
 
impl Clone for RuleAction
source§fn clone(&self) -> RuleAction
 
fn clone(&self) -> RuleAction
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 RuleAction
 
impl Debug for RuleAction
source§impl Default for RuleAction
 
impl Default for RuleAction
source§fn default() -> RuleAction
 
fn default() -> RuleAction
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RuleAction
 
impl<'de> Deserialize<'de> for RuleAction
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 RuleAction
 
impl PartialEq for RuleAction
source§fn eq(&self, other: &RuleAction) -> bool
 
fn eq(&self, other: &RuleAction) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for RuleAction
 
impl Serialize for RuleAction
impl StructuralPartialEq for RuleAction
Auto Trait Implementations§
impl RefUnwindSafe for RuleAction
impl Send for RuleAction
impl Sync for RuleAction
impl Unpin for RuleAction
impl UnwindSafe for RuleAction
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