Struct azure_devops_rust_api::git::models::GitImportTfvcSource
source · pub struct GitImportTfvcSource {
pub import_history: Option<bool>,
pub import_history_duration_in_days: Option<i32>,
pub path: Option<String>,
}Expand description
Parameter for creating a git import request when source is tfvc version control
Fields§
§import_history: Option<bool>Set true to import History, false otherwise
import_history_duration_in_days: Option<i32>Get history for last n days (max allowed value is 180 days)
path: Option<String>Path which we want to import (this can be copied from Path Control in Explorer)
Implementations§
Trait Implementations§
source§impl Clone for GitImportTfvcSource
impl Clone for GitImportTfvcSource
source§fn clone(&self) -> GitImportTfvcSource
fn clone(&self) -> GitImportTfvcSource
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 GitImportTfvcSource
impl Debug for GitImportTfvcSource
source§impl Default for GitImportTfvcSource
impl Default for GitImportTfvcSource
source§fn default() -> GitImportTfvcSource
fn default() -> GitImportTfvcSource
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GitImportTfvcSource
impl<'de> Deserialize<'de> for GitImportTfvcSource
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 GitImportTfvcSource
impl PartialEq for GitImportTfvcSource
source§fn eq(&self, other: &GitImportTfvcSource) -> bool
fn eq(&self, other: &GitImportTfvcSource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for GitImportTfvcSource
impl Serialize for GitImportTfvcSource
impl StructuralPartialEq for GitImportTfvcSource
Auto Trait Implementations§
impl Freeze for GitImportTfvcSource
impl RefUnwindSafe for GitImportTfvcSource
impl Send for GitImportTfvcSource
impl Sync for GitImportTfvcSource
impl Unpin for GitImportTfvcSource
impl UnwindSafe for GitImportTfvcSource
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