Struct azure_devops_rust_api::git::models::TfvcItemPreviousHash
source · pub struct TfvcItemPreviousHash {
pub tfvc_item: TfvcItem,
pub previous_hash_value: Option<String>,
}
Expand description
Metadata for an item including the previous hash value for files.
Fields§
§tfvc_item: TfvcItem
§previous_hash_value: Option<String>
MD5 hash as a base 64 string, applies to files only.
Implementations§
Trait Implementations§
source§impl Clone for TfvcItemPreviousHash
impl Clone for TfvcItemPreviousHash
source§fn clone(&self) -> TfvcItemPreviousHash
fn clone(&self) -> TfvcItemPreviousHash
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 TfvcItemPreviousHash
impl Debug for TfvcItemPreviousHash
source§impl Default for TfvcItemPreviousHash
impl Default for TfvcItemPreviousHash
source§fn default() -> TfvcItemPreviousHash
fn default() -> TfvcItemPreviousHash
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TfvcItemPreviousHash
impl<'de> Deserialize<'de> for TfvcItemPreviousHash
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 TfvcItemPreviousHash
impl PartialEq for TfvcItemPreviousHash
source§fn eq(&self, other: &TfvcItemPreviousHash) -> bool
fn eq(&self, other: &TfvcItemPreviousHash) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TfvcItemPreviousHash
impl Serialize for TfvcItemPreviousHash
impl StructuralPartialEq for TfvcItemPreviousHash
Auto Trait Implementations§
impl Freeze for TfvcItemPreviousHash
impl RefUnwindSafe for TfvcItemPreviousHash
impl Send for TfvcItemPreviousHash
impl Sync for TfvcItemPreviousHash
impl Unpin for TfvcItemPreviousHash
impl UnwindSafe for TfvcItemPreviousHash
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