pub struct WorkItemStateInputModel {
pub color: Option<String>,
pub name: Option<String>,
pub order: Option<i32>,
pub state_category: Option<String>,
}
Expand description
Class That represents a work item state input.
Fields§
§color: Option<String>
Color of the state
name: Option<String>
Name of the state
order: Option<i32>
Order in which state should appear
state_category: Option<String>
Category of the state
Implementations§
Trait Implementations§
source§impl Clone for WorkItemStateInputModel
impl Clone for WorkItemStateInputModel
source§fn clone(&self) -> WorkItemStateInputModel
fn clone(&self) -> WorkItemStateInputModel
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 WorkItemStateInputModel
impl Debug for WorkItemStateInputModel
source§impl Default for WorkItemStateInputModel
impl Default for WorkItemStateInputModel
source§fn default() -> WorkItemStateInputModel
fn default() -> WorkItemStateInputModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WorkItemStateInputModel
impl<'de> Deserialize<'de> for WorkItemStateInputModel
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 WorkItemStateInputModel
impl PartialEq for WorkItemStateInputModel
source§fn eq(&self, other: &WorkItemStateInputModel) -> bool
fn eq(&self, other: &WorkItemStateInputModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WorkItemStateInputModel
impl Serialize for WorkItemStateInputModel
impl StructuralPartialEq for WorkItemStateInputModel
Auto Trait Implementations§
impl RefUnwindSafe for WorkItemStateInputModel
impl Send for WorkItemStateInputModel
impl Sync for WorkItemStateInputModel
impl Unpin for WorkItemStateInputModel
impl UnwindSafe for WorkItemStateInputModel
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