Struct azure_devops_rust_api::test::models::CloneOptions
source · pub struct CloneOptions {
pub clone_requirements: Option<bool>,
pub copy_all_suites: Option<bool>,
pub copy_ancestor_hierarchy: Option<bool>,
pub destination_work_item_type: Option<String>,
pub override_parameters: Option<Value>,
pub related_link_comment: Option<String>,
}
Expand description
Clone options for cloning the test suite.
Fields§
§clone_requirements: Option<bool>
If set to true requirements will be cloned
copy_all_suites: Option<bool>
copy all suites from a source plan
copy_ancestor_hierarchy: Option<bool>
copy ancestor hierarchy
destination_work_item_type: Option<String>
Name of the workitem type of the clone
override_parameters: Option<Value>
Key value pairs where the key value is overridden by the value.
Comment on the link that will link the new clone test case to the original Set null for no comment
Implementations§
source§impl CloneOptions
impl CloneOptions
Trait Implementations§
source§impl Clone for CloneOptions
impl Clone for CloneOptions
source§fn clone(&self) -> CloneOptions
fn clone(&self) -> CloneOptions
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 CloneOptions
impl Debug for CloneOptions
source§impl Default for CloneOptions
impl Default for CloneOptions
source§fn default() -> CloneOptions
fn default() -> CloneOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CloneOptions
impl<'de> Deserialize<'de> for CloneOptions
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 CloneOptions
impl PartialEq for CloneOptions
source§fn eq(&self, other: &CloneOptions) -> bool
fn eq(&self, other: &CloneOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CloneOptions
impl Serialize for CloneOptions
impl StructuralPartialEq for CloneOptions
Auto Trait Implementations§
impl RefUnwindSafe for CloneOptions
impl Send for CloneOptions
impl Sync for CloneOptions
impl Unpin for CloneOptions
impl UnwindSafe for CloneOptions
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