pub struct AccountRecentMentionWorkItemModel {
pub assigned_to: Option<String>,
pub id: Option<i32>,
pub mentioned_date_field: Option<OffsetDateTime>,
pub state: Option<String>,
pub team_project: Option<String>,
pub title: Option<String>,
pub work_item_type: Option<String>,
}
Expand description
Represents Recent Mention Work Item
Fields§
§assigned_to: Option<String>
Assigned To
id: Option<i32>
Work Item Id
mentioned_date_field: Option<OffsetDateTime>
Latest date that the user were mentioned
state: Option<String>
State of the work item
team_project: Option<String>
Team project the work item belongs to
title: Option<String>
Title of the work item
work_item_type: Option<String>
Type of Work Item
Implementations§
Trait Implementations§
source§impl Clone for AccountRecentMentionWorkItemModel
impl Clone for AccountRecentMentionWorkItemModel
source§fn clone(&self) -> AccountRecentMentionWorkItemModel
fn clone(&self) -> AccountRecentMentionWorkItemModel
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 Default for AccountRecentMentionWorkItemModel
impl Default for AccountRecentMentionWorkItemModel
source§fn default() -> AccountRecentMentionWorkItemModel
fn default() -> AccountRecentMentionWorkItemModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AccountRecentMentionWorkItemModel
impl<'de> Deserialize<'de> for AccountRecentMentionWorkItemModel
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 AccountRecentMentionWorkItemModel
impl PartialEq for AccountRecentMentionWorkItemModel
source§fn eq(&self, other: &AccountRecentMentionWorkItemModel) -> bool
fn eq(&self, other: &AccountRecentMentionWorkItemModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AccountRecentMentionWorkItemModel
Auto Trait Implementations§
impl RefUnwindSafe for AccountRecentMentionWorkItemModel
impl Send for AccountRecentMentionWorkItemModel
impl Sync for AccountRecentMentionWorkItemModel
impl Unpin for AccountRecentMentionWorkItemModel
impl UnwindSafe for AccountRecentMentionWorkItemModel
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