Struct azure_devops_rust_api::test::models::SuiteEntryUpdateModel
source · pub struct SuiteEntryUpdateModel {
pub child_suite_id: Option<i32>,
pub sequence_number: Option<i32>,
pub test_case_id: Option<i32>,
}
Expand description
A model to define sequence of test suite entries in a test suite.
Fields§
§child_suite_id: Option<i32>
Id of the child suite in the test suite.
sequence_number: Option<i32>
Updated sequence number for the test case or child test suite in the test suite.
test_case_id: Option<i32>
Id of the test case in the test suite.
Implementations§
Trait Implementations§
source§impl Clone for SuiteEntryUpdateModel
impl Clone for SuiteEntryUpdateModel
source§fn clone(&self) -> SuiteEntryUpdateModel
fn clone(&self) -> SuiteEntryUpdateModel
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 SuiteEntryUpdateModel
impl Debug for SuiteEntryUpdateModel
source§impl Default for SuiteEntryUpdateModel
impl Default for SuiteEntryUpdateModel
source§fn default() -> SuiteEntryUpdateModel
fn default() -> SuiteEntryUpdateModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SuiteEntryUpdateModel
impl<'de> Deserialize<'de> for SuiteEntryUpdateModel
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 SuiteEntryUpdateModel
impl PartialEq for SuiteEntryUpdateModel
source§fn eq(&self, other: &SuiteEntryUpdateModel) -> bool
fn eq(&self, other: &SuiteEntryUpdateModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SuiteEntryUpdateModel
impl Serialize for SuiteEntryUpdateModel
impl StructuralPartialEq for SuiteEntryUpdateModel
Auto Trait Implementations§
impl RefUnwindSafe for SuiteEntryUpdateModel
impl Send for SuiteEntryUpdateModel
impl Sync for SuiteEntryUpdateModel
impl Unpin for SuiteEntryUpdateModel
impl UnwindSafe for SuiteEntryUpdateModel
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