pub struct SuiteEntryUpdateParams {
pub id: Option<i32>,
pub sequence_number: Option<i32>,
pub suite_entry_type: Option<SuiteEntryType>,
}
Expand description
A suite entry defines properties for a test suite.
Fields§
§id: Option<i32>
Id of the suite entry in the test suite: either a test case id or child suite id.
sequence_number: Option<i32>
Sequence number for the suite entry object in the test suite.
suite_entry_type: Option<SuiteEntryType>
Defines whether the entry is of type test case or suite.
Implementations§
Trait Implementations§
source§impl Clone for SuiteEntryUpdateParams
impl Clone for SuiteEntryUpdateParams
source§fn clone(&self) -> SuiteEntryUpdateParams
fn clone(&self) -> SuiteEntryUpdateParams
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 SuiteEntryUpdateParams
impl Debug for SuiteEntryUpdateParams
source§impl Default for SuiteEntryUpdateParams
impl Default for SuiteEntryUpdateParams
source§fn default() -> SuiteEntryUpdateParams
fn default() -> SuiteEntryUpdateParams
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SuiteEntryUpdateParams
impl<'de> Deserialize<'de> for SuiteEntryUpdateParams
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 SuiteEntryUpdateParams
impl PartialEq for SuiteEntryUpdateParams
source§fn eq(&self, other: &SuiteEntryUpdateParams) -> bool
fn eq(&self, other: &SuiteEntryUpdateParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SuiteEntryUpdateParams
impl Serialize for SuiteEntryUpdateParams
impl StructuralPartialEq for SuiteEntryUpdateParams
Auto Trait Implementations§
impl RefUnwindSafe for SuiteEntryUpdateParams
impl Send for SuiteEntryUpdateParams
impl Sync for SuiteEntryUpdateParams
impl Unpin for SuiteEntryUpdateParams
impl UnwindSafe for SuiteEntryUpdateParams
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