Struct azure_devops_rust_api::git::models::TfvcShelveset
source · pub struct TfvcShelveset {
pub tfvc_shelveset_ref: TfvcShelvesetRef,
pub changes: Vec<TfvcChange>,
pub notes: Vec<CheckinNote>,
pub policy_override: Option<TfvcPolicyOverrideInfo>,
pub work_items: Vec<AssociatedWorkItem>,
}
Expand description
Metadata for a shelveset.
Fields§
§tfvc_shelveset_ref: TfvcShelvesetRef
§changes: Vec<TfvcChange>
List of changes.
notes: Vec<CheckinNote>
List of checkin notes.
policy_override: Option<TfvcPolicyOverrideInfo>
Information on the policy override.
work_items: Vec<AssociatedWorkItem>
List of associated workitems.
Implementations§
source§impl TfvcShelveset
impl TfvcShelveset
Trait Implementations§
source§impl Clone for TfvcShelveset
impl Clone for TfvcShelveset
source§fn clone(&self) -> TfvcShelveset
fn clone(&self) -> TfvcShelveset
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 TfvcShelveset
impl Debug for TfvcShelveset
source§impl Default for TfvcShelveset
impl Default for TfvcShelveset
source§fn default() -> TfvcShelveset
fn default() -> TfvcShelveset
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TfvcShelveset
impl<'de> Deserialize<'de> for TfvcShelveset
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<TfvcShelveset> for TfvcShelveset
impl PartialEq<TfvcShelveset> for TfvcShelveset
source§fn eq(&self, other: &TfvcShelveset) -> bool
fn eq(&self, other: &TfvcShelveset) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TfvcShelveset
impl Serialize for TfvcShelveset
impl StructuralPartialEq for TfvcShelveset
Auto Trait Implementations§
impl RefUnwindSafe for TfvcShelveset
impl Send for TfvcShelveset
impl Sync for TfvcShelveset
impl Unpin for TfvcShelveset
impl UnwindSafe for TfvcShelveset
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