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
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccountRecentMentionWorkItemModel
Auto Trait Implementations§
impl Freeze for AccountRecentMentionWorkItemModel
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