pub struct AssociatedWorkItem {
pub assigned_to: Option<String>,
pub id: Option<i32>,
pub state: Option<String>,
pub title: Option<String>,
pub url: Option<String>,
pub web_url: Option<String>,
pub work_item_type: Option<String>,
}Fields§
§assigned_to: Option<String>§id: Option<i32>Id of associated the work item.
state: Option<String>§title: Option<String>§url: Option<String>REST Url of the work item.
web_url: Option<String>§work_item_type: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for AssociatedWorkItem
impl Clone for AssociatedWorkItem
Source§fn clone(&self) -> AssociatedWorkItem
fn clone(&self) -> AssociatedWorkItem
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 AssociatedWorkItem
impl Debug for AssociatedWorkItem
Source§impl Default for AssociatedWorkItem
impl Default for AssociatedWorkItem
Source§fn default() -> AssociatedWorkItem
fn default() -> AssociatedWorkItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssociatedWorkItem
impl<'de> Deserialize<'de> for AssociatedWorkItem
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 AssociatedWorkItem
impl PartialEq for AssociatedWorkItem
Source§impl Serialize for AssociatedWorkItem
impl Serialize for AssociatedWorkItem
impl StructuralPartialEq for AssociatedWorkItem
Auto Trait Implementations§
impl Freeze for AssociatedWorkItem
impl RefUnwindSafe for AssociatedWorkItem
impl Send for AssociatedWorkItem
impl Sync for AssociatedWorkItem
impl Unpin for AssociatedWorkItem
impl UnwindSafe for AssociatedWorkItem
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