pub struct LinkedWorkItemsQueryResult {
pub automated_test_name: Option<String>,
pub plan_id: Option<i32>,
pub point_id: Option<i32>,
pub suite_id: Option<i32>,
pub test_case_id: Option<i32>,
pub work_items: Vec<WorkItemReference>,
}
Expand description
Fields§
§automated_test_name: Option<String>
§plan_id: Option<i32>
§point_id: Option<i32>
§suite_id: Option<i32>
§test_case_id: Option<i32>
§work_items: Vec<WorkItemReference>
Implementations§
Trait Implementations§
source§impl Clone for LinkedWorkItemsQueryResult
impl Clone for LinkedWorkItemsQueryResult
source§fn clone(&self) -> LinkedWorkItemsQueryResult
fn clone(&self) -> LinkedWorkItemsQueryResult
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 LinkedWorkItemsQueryResult
impl Debug for LinkedWorkItemsQueryResult
source§impl Default for LinkedWorkItemsQueryResult
impl Default for LinkedWorkItemsQueryResult
source§fn default() -> LinkedWorkItemsQueryResult
fn default() -> LinkedWorkItemsQueryResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LinkedWorkItemsQueryResult
impl<'de> Deserialize<'de> for LinkedWorkItemsQueryResult
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 LinkedWorkItemsQueryResult
impl PartialEq for LinkedWorkItemsQueryResult
source§fn eq(&self, other: &LinkedWorkItemsQueryResult) -> bool
fn eq(&self, other: &LinkedWorkItemsQueryResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LinkedWorkItemsQueryResult
Auto Trait Implementations§
impl RefUnwindSafe for LinkedWorkItemsQueryResult
impl Send for LinkedWorkItemsQueryResult
impl Sync for LinkedWorkItemsQueryResult
impl Unpin for LinkedWorkItemsQueryResult
impl UnwindSafe for LinkedWorkItemsQueryResult
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