pub struct WorkItemStatus {
pub state_key: String,
pub is_archived_state: bool,
pub is_init_state: bool,
pub updated_at: i64,
pub updated_by: String,
}Fields§
§state_key: String§is_archived_state: bool§is_init_state: bool§updated_at: i64§updated_by: StringTrait Implementations§
Source§impl Clone for WorkItemStatus
impl Clone for WorkItemStatus
Source§fn clone(&self) -> WorkItemStatus
fn clone(&self) -> WorkItemStatus
Returns a duplicate 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 WorkItemStatus
impl Debug for WorkItemStatus
Source§impl<'de> Deserialize<'de> for WorkItemStatus
impl<'de> Deserialize<'de> for WorkItemStatus
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
Auto Trait Implementations§
impl Freeze for WorkItemStatus
impl RefUnwindSafe for WorkItemStatus
impl Send for WorkItemStatus
impl Sync for WorkItemStatus
impl Unpin for WorkItemStatus
impl UnwindSafe for WorkItemStatus
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