Struct azure_devops_rust_api::tfvc::models::TfvcChangesetRef
source · pub struct TfvcChangesetRef {
pub links: Option<Value>,
pub author: Option<IdentityRef>,
pub changeset_id: Option<i32>,
pub checked_in_by: Option<IdentityRef>,
pub comment: Option<String>,
pub comment_truncated: Option<bool>,
pub created_date: Option<OffsetDateTime>,
pub url: Option<String>,
}Expand description
Metadata for a changeset.
Fields§
§links: Option<Value>Links
changeset_id: Option<i32>Changeset Id.
checked_in_by: Option<IdentityRef>§comment: Option<String>Comment for the changeset.
comment_truncated: Option<bool>Was the Comment result truncated?
created_date: Option<OffsetDateTime>Creation date of the changeset.
url: Option<String>URL to retrieve the item.
Implementations§
Trait Implementations§
source§impl Clone for TfvcChangesetRef
impl Clone for TfvcChangesetRef
source§fn clone(&self) -> TfvcChangesetRef
fn clone(&self) -> TfvcChangesetRef
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 TfvcChangesetRef
impl Debug for TfvcChangesetRef
source§impl Default for TfvcChangesetRef
impl Default for TfvcChangesetRef
source§fn default() -> TfvcChangesetRef
fn default() -> TfvcChangesetRef
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TfvcChangesetRef
impl<'de> Deserialize<'de> for TfvcChangesetRef
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 TfvcChangesetRef
impl PartialEq for TfvcChangesetRef
source§fn eq(&self, other: &TfvcChangesetRef) -> bool
fn eq(&self, other: &TfvcChangesetRef) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TfvcChangesetRef
impl Serialize for TfvcChangesetRef
impl StructuralPartialEq for TfvcChangesetRef
Auto Trait Implementations§
impl RefUnwindSafe for TfvcChangesetRef
impl Send for TfvcChangesetRef
impl Sync for TfvcChangesetRef
impl Unpin for TfvcChangesetRef
impl UnwindSafe for TfvcChangesetRef
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