pub struct MigrationsUpdateImportRequest {
pub vcs_username: Option<String>,
pub vcs_password: Option<String>,
pub vcs: Option<Vcs>,
pub tfvc_project: Option<String>,
}
Fields§
§vcs_username: Option<String>
The username to provide to the originating repository.
vcs_password: Option<String>
The password to provide to the originating repository.
vcs: Option<Vcs>
The type of version control system you are migrating from.
tfvc_project: Option<String>
For a tfvc import, the name of the project that is being imported.
Implementations§
Trait Implementations§
Source§impl Clone for MigrationsUpdateImportRequest
impl Clone for MigrationsUpdateImportRequest
Source§fn clone(&self) -> MigrationsUpdateImportRequest
fn clone(&self) -> MigrationsUpdateImportRequest
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 Default for MigrationsUpdateImportRequest
impl Default for MigrationsUpdateImportRequest
Source§fn default() -> MigrationsUpdateImportRequest
fn default() -> MigrationsUpdateImportRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MigrationsUpdateImportRequest
impl<'de> Deserialize<'de> for MigrationsUpdateImportRequest
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 MigrationsUpdateImportRequest
impl PartialEq for MigrationsUpdateImportRequest
Source§fn eq(&self, other: &MigrationsUpdateImportRequest) -> bool
fn eq(&self, other: &MigrationsUpdateImportRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MigrationsUpdateImportRequest
Auto Trait Implementations§
impl Freeze for MigrationsUpdateImportRequest
impl RefUnwindSafe for MigrationsUpdateImportRequest
impl Send for MigrationsUpdateImportRequest
impl Sync for MigrationsUpdateImportRequest
impl Unpin for MigrationsUpdateImportRequest
impl UnwindSafe for MigrationsUpdateImportRequest
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