Struct azure_devops_rust_api::processes::models::ProcessBehavior
source · pub struct ProcessBehavior {
pub color: Option<String>,
pub customization: Option<Customization>,
pub description: Option<String>,
pub fields: Vec<ProcessBehaviorField>,
pub inherits: Option<ProcessBehaviorReference>,
pub name: Option<String>,
pub rank: Option<i32>,
pub reference_name: Option<String>,
pub url: Option<String>,
}Expand description
Process Behavior Model.
Fields§
§color: Option<String>Color.
customization: Option<Customization>Indicates the type of customization on this work item. System behaviors are inherited from parent process but not modified. Inherited behaviors are modified modified behaviors that were inherited from parent process. Custom behaviors are behaviors created by user in current process.
description: Option<String>. Description
fields: Vec<ProcessBehaviorField>Process Behavior Fields.
inherits: Option<ProcessBehaviorReference>Process behavior Reference.
name: Option<String>Behavior Name.
rank: Option<i32>Rank of the behavior
reference_name: Option<String>Behavior Id
url: Option<String>Url of the behavior.
Implementations§
Trait Implementations§
source§impl Clone for ProcessBehavior
impl Clone for ProcessBehavior
source§fn clone(&self) -> ProcessBehavior
fn clone(&self) -> ProcessBehavior
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 ProcessBehavior
impl Debug for ProcessBehavior
source§impl Default for ProcessBehavior
impl Default for ProcessBehavior
source§fn default() -> ProcessBehavior
fn default() -> ProcessBehavior
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ProcessBehavior
impl<'de> Deserialize<'de> for ProcessBehavior
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<ProcessBehavior> for ProcessBehavior
impl PartialEq<ProcessBehavior> for ProcessBehavior
source§fn eq(&self, other: &ProcessBehavior) -> bool
fn eq(&self, other: &ProcessBehavior) -> bool
This method tests for
self and other values to be equal, and is used
by ==.