Struct azure_devops_rust_api::git::models::ChangeListSearchCriteria
source · pub struct ChangeListSearchCriteria {Show 13 fields
pub compare_version: Option<String>,
pub exclude_deletes: Option<bool>,
pub follow_renames: Option<bool>,
pub from_date: Option<String>,
pub from_version: Option<String>,
pub item_path: Option<String>,
pub item_paths: Vec<String>,
pub item_version: Option<String>,
pub skip: Option<i32>,
pub to_date: Option<String>,
pub top: Option<i32>,
pub to_version: Option<String>,
pub user: Option<String>,
}
Expand description
Criteria used in a search for change lists
Fields§
§compare_version: Option<String>
If provided, a version descriptor to compare against base
exclude_deletes: Option<bool>
If true, don’t include delete history entries
follow_renames: Option<bool>
Whether or not to follow renames for the given item being queried
from_date: Option<String>
If provided, only include history entries created after this date (string)
from_version: Option<String>
If provided, a version descriptor for the earliest change list to include
item_path: Option<String>
Path of item to search under. If the itemPaths memebr is used then it will take precedence over this.
item_paths: Vec<String>
List of item paths to search under. If this member is used then itemPath will be ignored.
item_version: Option<String>
Version of the items to search
skip: Option<i32>
Number of results to skip (used when clicking more…)
to_date: Option<String>
If provided, only include history entries created before this date (string)
top: Option<i32>
If provided, the maximum number of history entries to return
to_version: Option<String>
If provided, a version descriptor for the latest change list to include
user: Option<String>
Alias or display name of user who made the changes
Implementations§
Trait Implementations§
source§impl Clone for ChangeListSearchCriteria
impl Clone for ChangeListSearchCriteria
source§fn clone(&self) -> ChangeListSearchCriteria
fn clone(&self) -> ChangeListSearchCriteria
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ChangeListSearchCriteria
impl Debug for ChangeListSearchCriteria
source§impl Default for ChangeListSearchCriteria
impl Default for ChangeListSearchCriteria
source§fn default() -> ChangeListSearchCriteria
fn default() -> ChangeListSearchCriteria
source§impl<'de> Deserialize<'de> for ChangeListSearchCriteria
impl<'de> Deserialize<'de> for ChangeListSearchCriteria
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>,
source§impl PartialEq for ChangeListSearchCriteria
impl PartialEq for ChangeListSearchCriteria
source§fn eq(&self, other: &ChangeListSearchCriteria) -> bool
fn eq(&self, other: &ChangeListSearchCriteria) -> bool
self
and other
values to be equal, and is used
by ==
.