pub struct ImportRepositoryValidation {
pub git_source: Option<GitImportGitSource>,
pub password: Option<String>,
pub tfvc_source: Option<GitImportTfvcSource>,
pub username: Option<String>,
}Fields§
§git_source: Option<GitImportGitSource>Parameter for creating a git import request when source is Git version control
password: Option<String>§tfvc_source: Option<GitImportTfvcSource>Parameter for creating a git import request when source is tfvc version control
username: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ImportRepositoryValidation
impl Clone for ImportRepositoryValidation
Source§fn clone(&self) -> ImportRepositoryValidation
fn clone(&self) -> ImportRepositoryValidation
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 ImportRepositoryValidation
impl Debug for ImportRepositoryValidation
Source§impl Default for ImportRepositoryValidation
impl Default for ImportRepositoryValidation
Source§fn default() -> ImportRepositoryValidation
fn default() -> ImportRepositoryValidation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImportRepositoryValidation
impl<'de> Deserialize<'de> for ImportRepositoryValidation
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
impl StructuralPartialEq for ImportRepositoryValidation
Auto Trait Implementations§
impl Freeze for ImportRepositoryValidation
impl RefUnwindSafe for ImportRepositoryValidation
impl Send for ImportRepositoryValidation
impl Sync for ImportRepositoryValidation
impl Unpin for ImportRepositoryValidation
impl UnwindSafe for ImportRepositoryValidation
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