pub struct WorkItemDeleteReference {
pub code: Option<i32>,
pub deleted_by: Option<String>,
pub deleted_date: Option<String>,
pub id: Option<i32>,
pub message: Option<String>,
pub name: Option<String>,
pub project: Option<String>,
pub type_: Option<String>,
pub url: Option<String>,
}Expand description
Reference to a deleted work item.
Fields§
§code: Option<i32>The HTTP status code for work item operation in a batch request.
deleted_by: Option<String>The user who deleted the work item type.
deleted_date: Option<String>The work item deletion date.
id: Option<i32>Work item ID.
message: Option<String>The exception message for work item operation in a batch request.
name: Option<String>Name or title of the work item.
project: Option<String>Parent project of the deleted work item.
type_: Option<String>Type of work item.
url: Option<String>REST API URL of the resource
Implementations§
Trait Implementations§
Source§impl Clone for WorkItemDeleteReference
impl Clone for WorkItemDeleteReference
Source§fn clone(&self) -> WorkItemDeleteReference
fn clone(&self) -> WorkItemDeleteReference
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 WorkItemDeleteReference
impl Debug for WorkItemDeleteReference
Source§impl Default for WorkItemDeleteReference
impl Default for WorkItemDeleteReference
Source§fn default() -> WorkItemDeleteReference
fn default() -> WorkItemDeleteReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkItemDeleteReference
impl<'de> Deserialize<'de> for WorkItemDeleteReference
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 WorkItemDeleteReference
impl PartialEq for WorkItemDeleteReference
Source§impl Serialize for WorkItemDeleteReference
impl Serialize for WorkItemDeleteReference
impl StructuralPartialEq for WorkItemDeleteReference
Auto Trait Implementations§
impl Freeze for WorkItemDeleteReference
impl RefUnwindSafe for WorkItemDeleteReference
impl Send for WorkItemDeleteReference
impl Sync for WorkItemDeleteReference
impl Unpin for WorkItemDeleteReference
impl UnwindSafe for WorkItemDeleteReference
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