pub struct TfvcStatistics {
pub changeset_id: Option<i32>,
pub file_count_total: Option<i64>,
}Fields§
§changeset_id: Option<i32>Id of the last changeset the stats are based on.
file_count_total: Option<i64>Count of files at the requested scope.
Implementations§
Trait Implementations§
Source§impl Clone for TfvcStatistics
impl Clone for TfvcStatistics
Source§fn clone(&self) -> TfvcStatistics
fn clone(&self) -> TfvcStatistics
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 TfvcStatistics
impl Debug for TfvcStatistics
Source§impl Default for TfvcStatistics
impl Default for TfvcStatistics
Source§fn default() -> TfvcStatistics
fn default() -> TfvcStatistics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TfvcStatistics
impl<'de> Deserialize<'de> for TfvcStatistics
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 TfvcStatistics
impl PartialEq for TfvcStatistics
Source§impl Serialize for TfvcStatistics
impl Serialize for TfvcStatistics
impl StructuralPartialEq for TfvcStatistics
Auto Trait Implementations§
impl Freeze for TfvcStatistics
impl RefUnwindSafe for TfvcStatistics
impl Send for TfvcStatistics
impl Sync for TfvcStatistics
impl Unpin for TfvcStatistics
impl UnwindSafe for TfvcStatistics
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