Struct azure_devops_rust_api::tfvc::models::TfvcItem
source · pub struct TfvcItem {
pub item_model: ItemModel,
pub change_date: Option<OffsetDateTime>,
pub deletion_id: Option<i32>,
pub encoding: Option<i32>,
pub hash_value: Option<String>,
pub is_branch: Option<bool>,
pub is_pending_change: Option<bool>,
pub size: Option<i64>,
pub version: Option<i32>,
}
Expand description
Metadata for an item.
Fields§
§item_model: ItemModel
§change_date: Option<OffsetDateTime>
Item changed datetime.
deletion_id: Option<i32>
Greater than 0 if item is deleted.
encoding: Option<i32>
File encoding from database, -1 represents binary.
hash_value: Option<String>
MD5 hash as a base 64 string, applies to files only.
is_branch: Option<bool>
True if item is a branch.
is_pending_change: Option<bool>
True if there is a change pending.
size: Option<i64>
The size of the file, if applicable.
version: Option<i32>
Changeset version Id.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for TfvcItem
impl<'de> Deserialize<'de> for TfvcItem
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 TfvcItem
impl PartialEq for TfvcItem
impl StructuralPartialEq for TfvcItem
Auto Trait Implementations§
impl RefUnwindSafe for TfvcItem
impl Send for TfvcItem
impl Sync for TfvcItem
impl Unpin for TfvcItem
impl UnwindSafe for TfvcItem
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