pub struct WorkItemStateResultModel {
pub color: Option<String>,
pub customization_type: Option<CustomizationType>,
pub hidden: Option<bool>,
pub id: Option<String>,
pub name: Option<String>,
pub order: Option<i32>,
pub state_category: Option<String>,
pub url: Option<String>,
}Expand description
Class that represents a work item state result.
Fields§
§color: Option<String>Work item state color.
customization_type: Option<CustomizationType>Work item state customization type.
If the Work item state is hidden.
id: Option<String>Id of the Workitemstate.
name: Option<String>Work item state name.
order: Option<i32>Work item state order.
state_category: Option<String>Work item state statecategory.
url: Option<String>Work item state url.
Implementations§
Trait Implementations§
Source§impl Clone for WorkItemStateResultModel
impl Clone for WorkItemStateResultModel
Source§fn clone(&self) -> WorkItemStateResultModel
fn clone(&self) -> WorkItemStateResultModel
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 WorkItemStateResultModel
impl Debug for WorkItemStateResultModel
Source§impl Default for WorkItemStateResultModel
impl Default for WorkItemStateResultModel
Source§fn default() -> WorkItemStateResultModel
fn default() -> WorkItemStateResultModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkItemStateResultModel
impl<'de> Deserialize<'de> for WorkItemStateResultModel
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 WorkItemStateResultModel
impl PartialEq for WorkItemStateResultModel
Source§impl Serialize for WorkItemStateResultModel
impl Serialize for WorkItemStateResultModel
impl StructuralPartialEq for WorkItemStateResultModel
Auto Trait Implementations§
impl Freeze for WorkItemStateResultModel
impl RefUnwindSafe for WorkItemStateResultModel
impl Send for WorkItemStateResultModel
impl Sync for WorkItemStateResultModel
impl Unpin for WorkItemStateResultModel
impl UnwindSafe for WorkItemStateResultModel
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