Struct azure_devops_rust_api::work::models::TeamSettingsPatch
source · pub struct TeamSettingsPatch {
pub backlog_iteration: Option<String>,
pub backlog_visibilities: Option<Value>,
pub bugs_behavior: Option<BugsBehavior>,
pub default_iteration: Option<String>,
pub default_iteration_macro: Option<String>,
pub working_days: Vec<Value>,
}Expand description
Data contract for what we expect to receive when PATCH
Fields§
§backlog_iteration: Option<String>§backlog_visibilities: Option<Value>§bugs_behavior: Option<BugsBehavior>§default_iteration: Option<String>§default_iteration_macro: Option<String>§working_days: Vec<Value>Implementations§
Trait Implementations§
source§impl Clone for TeamSettingsPatch
impl Clone for TeamSettingsPatch
source§fn clone(&self) -> TeamSettingsPatch
fn clone(&self) -> TeamSettingsPatch
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 TeamSettingsPatch
impl Debug for TeamSettingsPatch
source§impl Default for TeamSettingsPatch
impl Default for TeamSettingsPatch
source§fn default() -> TeamSettingsPatch
fn default() -> TeamSettingsPatch
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TeamSettingsPatch
impl<'de> Deserialize<'de> for TeamSettingsPatch
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 TeamSettingsPatch
impl PartialEq for TeamSettingsPatch
source§fn eq(&self, other: &TeamSettingsPatch) -> bool
fn eq(&self, other: &TeamSettingsPatch) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TeamSettingsPatch
impl Serialize for TeamSettingsPatch
impl StructuralPartialEq for TeamSettingsPatch
Auto Trait Implementations§
impl Freeze for TeamSettingsPatch
impl RefUnwindSafe for TeamSettingsPatch
impl Send for TeamSettingsPatch
impl Sync for TeamSettingsPatch
impl Unpin for TeamSettingsPatch
impl UnwindSafe for TeamSettingsPatch
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