Struct azure_devops_rust_api::processes::models::UpdateProcessModel
source · pub struct UpdateProcessModel {
pub description: Option<String>,
pub is_default: Option<bool>,
pub is_enabled: Option<bool>,
pub name: Option<String>,
}
Expand description
Describes a request to update a process
Fields§
§description: Option<String>
New description of the process
is_default: Option<bool>
If true new projects will use this process by default
is_enabled: Option<bool>
If false the process will be disabled and cannot be used to create projects
name: Option<String>
New name of the process
Implementations§
Trait Implementations§
source§impl Clone for UpdateProcessModel
impl Clone for UpdateProcessModel
source§fn clone(&self) -> UpdateProcessModel
fn clone(&self) -> UpdateProcessModel
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 UpdateProcessModel
impl Debug for UpdateProcessModel
source§impl Default for UpdateProcessModel
impl Default for UpdateProcessModel
source§fn default() -> UpdateProcessModel
fn default() -> UpdateProcessModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UpdateProcessModel
impl<'de> Deserialize<'de> for UpdateProcessModel
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 UpdateProcessModel
impl PartialEq for UpdateProcessModel
source§fn eq(&self, other: &UpdateProcessModel) -> bool
fn eq(&self, other: &UpdateProcessModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for UpdateProcessModel
impl Serialize for UpdateProcessModel
impl StructuralPartialEq for UpdateProcessModel
Auto Trait Implementations§
impl RefUnwindSafe for UpdateProcessModel
impl Send for UpdateProcessModel
impl Sync for UpdateProcessModel
impl Unpin for UpdateProcessModel
impl UnwindSafe for UpdateProcessModel
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