Struct azure_devops_rust_api::test::models::TestSuiteCloneRequest
source · pub struct TestSuiteCloneRequest {
pub clone_options: Option<CloneOptions>,
pub destination_suite_id: Option<i32>,
pub destination_suite_project_name: Option<String>,
}
Expand description
Test suite clone request
Fields§
§clone_options: Option<CloneOptions>
Clone options for cloning the test suite.
destination_suite_id: Option<i32>
Suite id under which, we have to clone the suite.
destination_suite_project_name: Option<String>
Destination suite project name.
Implementations§
Trait Implementations§
source§impl Clone for TestSuiteCloneRequest
impl Clone for TestSuiteCloneRequest
source§fn clone(&self) -> TestSuiteCloneRequest
fn clone(&self) -> TestSuiteCloneRequest
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 TestSuiteCloneRequest
impl Debug for TestSuiteCloneRequest
source§impl Default for TestSuiteCloneRequest
impl Default for TestSuiteCloneRequest
source§fn default() -> TestSuiteCloneRequest
fn default() -> TestSuiteCloneRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestSuiteCloneRequest
impl<'de> Deserialize<'de> for TestSuiteCloneRequest
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 TestSuiteCloneRequest
impl PartialEq for TestSuiteCloneRequest
source§fn eq(&self, other: &TestSuiteCloneRequest) -> bool
fn eq(&self, other: &TestSuiteCloneRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestSuiteCloneRequest
impl Serialize for TestSuiteCloneRequest
impl StructuralPartialEq for TestSuiteCloneRequest
Auto Trait Implementations§
impl RefUnwindSafe for TestSuiteCloneRequest
impl Send for TestSuiteCloneRequest
impl Sync for TestSuiteCloneRequest
impl Unpin for TestSuiteCloneRequest
impl UnwindSafe for TestSuiteCloneRequest
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