Struct azure_devops_rust_api::work::models::PredefinedQuery   
source · pub struct PredefinedQuery {
    pub has_more: Option<bool>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub results: Vec<WorkItem>,
    pub url: Option<String>,
    pub web_url: Option<String>,
}Expand description
Represents a single pre-defined query.
Fields§
§has_more: Option<bool>Whether or not the query returned the complete set of data or if the data was truncated.
id: Option<String>Id of the query
name: Option<String>Localized name of the query
results: Vec<WorkItem>The results of the query. This will be a set of WorkItem objects with only the ‘id’ set. The client is responsible for paging in the data as needed.
url: Option<String>REST API Url to use to retrieve results for this query
web_url: Option<String>Url to use to display a page in the browser with the results of this query
Implementations§
Trait Implementations§
source§impl Clone for PredefinedQuery
 
impl Clone for PredefinedQuery
source§fn clone(&self) -> PredefinedQuery
 
fn clone(&self) -> PredefinedQuery
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 PredefinedQuery
 
impl Debug for PredefinedQuery
source§impl Default for PredefinedQuery
 
impl Default for PredefinedQuery
source§fn default() -> PredefinedQuery
 
fn default() -> PredefinedQuery
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PredefinedQuery
 
impl<'de> Deserialize<'de> for PredefinedQuery
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 PredefinedQuery
 
impl PartialEq for PredefinedQuery
source§fn eq(&self, other: &PredefinedQuery) -> bool
 
fn eq(&self, other: &PredefinedQuery) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for PredefinedQuery
 
impl Serialize for PredefinedQuery
impl StructuralPartialEq for PredefinedQuery
Auto Trait Implementations§
impl RefUnwindSafe for PredefinedQuery
impl Send for PredefinedQuery
impl Sync for PredefinedQuery
impl Unpin for PredefinedQuery
impl UnwindSafe for PredefinedQuery
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