Struct azure_devops_rust_api::wit::models::WorkItemQueryResult
source · pub struct WorkItemQueryResult {
pub as_of: Option<OffsetDateTime>,
pub columns: Vec<WorkItemFieldReference>,
pub query_result_type: Option<QueryResultType>,
pub query_type: Option<QueryType>,
pub sort_columns: Vec<WorkItemQuerySortColumn>,
pub work_item_relations: Vec<WorkItemLink>,
pub work_items: Vec<WorkItemReference>,
}
Expand description
The result of a work item query.
Fields§
§as_of: Option<OffsetDateTime>
The date the query was run in the context of.
columns: Vec<WorkItemFieldReference>
The columns of the query.
query_result_type: Option<QueryResultType>
The result type
query_type: Option<QueryType>
The type of the query
sort_columns: Vec<WorkItemQuerySortColumn>
The sort columns of the query.
work_item_relations: Vec<WorkItemLink>
The work item links returned by the query.
work_items: Vec<WorkItemReference>
The work items returned by the query.
Implementations§
Trait Implementations§
source§impl Clone for WorkItemQueryResult
impl Clone for WorkItemQueryResult
source§fn clone(&self) -> WorkItemQueryResult
fn clone(&self) -> WorkItemQueryResult
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 WorkItemQueryResult
impl Debug for WorkItemQueryResult
source§impl Default for WorkItemQueryResult
impl Default for WorkItemQueryResult
source§fn default() -> WorkItemQueryResult
fn default() -> WorkItemQueryResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for WorkItemQueryResult
impl<'de> Deserialize<'de> for WorkItemQueryResult
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 WorkItemQueryResult
impl PartialEq for WorkItemQueryResult
source§fn eq(&self, other: &WorkItemQueryResult) -> bool
fn eq(&self, other: &WorkItemQueryResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WorkItemQueryResult
impl Serialize for WorkItemQueryResult
impl StructuralPartialEq for WorkItemQueryResult
Auto Trait Implementations§
impl Freeze for WorkItemQueryResult
impl RefUnwindSafe for WorkItemQueryResult
impl Send for WorkItemQueryResult
impl Sync for WorkItemQueryResult
impl Unpin for WorkItemQueryResult
impl UnwindSafe for WorkItemQueryResult
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