pub struct LibraryWorkItemsData {
pub column_options: Vec<String>,
pub continuation_token: Option<String>,
pub exceeded_work_item_query_limit: Option<bool>,
pub has_more_elements: Option<bool>,
pub return_code: Option<ReturnCode>,
pub work_item_ids: Vec<i32>,
pub work_items: Vec<WorkItemDetails>,
}
Expand description
This data model is used in Work item-based tabs of Test Plans Library.
Fields§
§column_options: Vec<String>
Specifies the column option field names
continuation_token: Option<String>
Continuation token to fetch next set of elements. Present only when HasMoreElements is true.
exceeded_work_item_query_limit: Option<bool>
Boolean indicating if the WIQL query has exceeded the limit of items returned.
has_more_elements: Option<bool>
Boolean indicating if there are more elements present than what are being sent.
return_code: Option<ReturnCode>
Specifies if there was an error while execution of data provider.
work_item_ids: Vec<i32>
List of work items returned when OrderByField is sent something other than Id.
work_items: Vec<WorkItemDetails>
List of work items to be returned.
Implementations§
Trait Implementations§
source§impl Clone for LibraryWorkItemsData
impl Clone for LibraryWorkItemsData
source§fn clone(&self) -> LibraryWorkItemsData
fn clone(&self) -> LibraryWorkItemsData
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 LibraryWorkItemsData
impl Debug for LibraryWorkItemsData
source§impl Default for LibraryWorkItemsData
impl Default for LibraryWorkItemsData
source§fn default() -> LibraryWorkItemsData
fn default() -> LibraryWorkItemsData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LibraryWorkItemsData
impl<'de> Deserialize<'de> for LibraryWorkItemsData
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 LibraryWorkItemsData
impl PartialEq for LibraryWorkItemsData
source§fn eq(&self, other: &LibraryWorkItemsData) -> bool
fn eq(&self, other: &LibraryWorkItemsData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LibraryWorkItemsData
impl Serialize for LibraryWorkItemsData
impl StructuralPartialEq for LibraryWorkItemsData
Auto Trait Implementations§
impl RefUnwindSafe for LibraryWorkItemsData
impl Send for LibraryWorkItemsData
impl Sync for LibraryWorkItemsData
impl Unpin for LibraryWorkItemsData
impl UnwindSafe for LibraryWorkItemsData
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