pub struct WorkItemDeleteBatchRequest {
pub destroy: Option<bool>,
pub ids: Vec<i32>,
pub skip_notifications: Option<bool>,
}Expand description
Describes a request to delete a set of work items
Fields§
§destroy: Option<bool>Optional parameter, if set to true, the work item is deleted permanently. Please note: the destroy action is PERMANENT and cannot be undone.
ids: Vec<i32>The requested work item ids
skip_notifications: Option<bool>Optional parameter, if set to true, notifications will be disabled.
Implementations§
Trait Implementations§
Source§impl Clone for WorkItemDeleteBatchRequest
impl Clone for WorkItemDeleteBatchRequest
Source§fn clone(&self) -> WorkItemDeleteBatchRequest
fn clone(&self) -> WorkItemDeleteBatchRequest
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 WorkItemDeleteBatchRequest
impl Debug for WorkItemDeleteBatchRequest
Source§impl Default for WorkItemDeleteBatchRequest
impl Default for WorkItemDeleteBatchRequest
Source§fn default() -> WorkItemDeleteBatchRequest
fn default() -> WorkItemDeleteBatchRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkItemDeleteBatchRequest
impl<'de> Deserialize<'de> for WorkItemDeleteBatchRequest
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
impl StructuralPartialEq for WorkItemDeleteBatchRequest
Auto Trait Implementations§
impl Freeze for WorkItemDeleteBatchRequest
impl RefUnwindSafe for WorkItemDeleteBatchRequest
impl Send for WorkItemDeleteBatchRequest
impl Sync for WorkItemDeleteBatchRequest
impl Unpin for WorkItemDeleteBatchRequest
impl UnwindSafe for WorkItemDeleteBatchRequest
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