pub struct TfvcShelvesetRequestData {
pub include_details: Option<bool>,
pub include_links: Option<bool>,
pub include_work_items: Option<bool>,
pub max_change_count: Option<i32>,
pub max_comment_length: Option<i32>,
pub name: Option<String>,
pub owner: Option<String>,
}Fields§
§include_details: Option<bool>Whether to include policyOverride and notes Only applies when requesting a single deep shelveset
include_links: Option<bool>Whether to include the _links field on the shallow references. Does not apply when requesting a single deep shelveset object. Links will always be included in the deep shelveset.
include_work_items: Option<bool>Whether to include workItems
max_change_count: Option<i32>Max number of changes to include
max_comment_length: Option<i32>Max length of comment
name: Option<String>Shelveset name
owner: Option<String>Owner’s ID. Could be a name or a guid.
Implementations§
Trait Implementations§
Source§impl Clone for TfvcShelvesetRequestData
impl Clone for TfvcShelvesetRequestData
Source§fn clone(&self) -> TfvcShelvesetRequestData
fn clone(&self) -> TfvcShelvesetRequestData
Returns a duplicate 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 TfvcShelvesetRequestData
impl Debug for TfvcShelvesetRequestData
Source§impl Default for TfvcShelvesetRequestData
impl Default for TfvcShelvesetRequestData
Source§fn default() -> TfvcShelvesetRequestData
fn default() -> TfvcShelvesetRequestData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TfvcShelvesetRequestData
impl<'de> Deserialize<'de> for TfvcShelvesetRequestData
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 TfvcShelvesetRequestData
impl PartialEq for TfvcShelvesetRequestData
Source§impl Serialize for TfvcShelvesetRequestData
impl Serialize for TfvcShelvesetRequestData
impl StructuralPartialEq for TfvcShelvesetRequestData
Auto Trait Implementations§
impl Freeze for TfvcShelvesetRequestData
impl RefUnwindSafe for TfvcShelvesetRequestData
impl Send for TfvcShelvesetRequestData
impl Sync for TfvcShelvesetRequestData
impl Unpin for TfvcShelvesetRequestData
impl UnwindSafe for TfvcShelvesetRequestData
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