pub struct TestPlanUpdateParams {
pub test_plan_create_params: TestPlanCreateParams,
pub revision: Option<i32>,
}
Expand description
The test plan update parameters.
Fields§
§test_plan_create_params: TestPlanCreateParams
§revision: Option<i32>
Revision of the test plan.
Implementations§
Trait Implementations§
source§impl Clone for TestPlanUpdateParams
impl Clone for TestPlanUpdateParams
source§fn clone(&self) -> TestPlanUpdateParams
fn clone(&self) -> TestPlanUpdateParams
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 TestPlanUpdateParams
impl Debug for TestPlanUpdateParams
source§impl Default for TestPlanUpdateParams
impl Default for TestPlanUpdateParams
source§fn default() -> TestPlanUpdateParams
fn default() -> TestPlanUpdateParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestPlanUpdateParams
impl<'de> Deserialize<'de> for TestPlanUpdateParams
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 TestPlanUpdateParams
impl PartialEq for TestPlanUpdateParams
source§fn eq(&self, other: &TestPlanUpdateParams) -> bool
fn eq(&self, other: &TestPlanUpdateParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestPlanUpdateParams
impl Serialize for TestPlanUpdateParams
impl StructuralPartialEq for TestPlanUpdateParams
Auto Trait Implementations§
impl RefUnwindSafe for TestPlanUpdateParams
impl Send for TestPlanUpdateParams
impl Sync for TestPlanUpdateParams
impl Unpin for TestPlanUpdateParams
impl UnwindSafe for TestPlanUpdateParams
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