pub struct RequirementsToTestsMapping2 {
pub created_by: Option<String>,
pub creation_date: Option<OffsetDateTime>,
pub deleted_by: Option<String>,
pub deletion_date: Option<OffsetDateTime>,
pub is_migrated_to_wit: Option<bool>,
pub project_id: Option<String>,
pub test_metadata_id: Option<i32>,
pub work_item_id: Option<i32>,
}
Expand description
Fields§
§created_by: Option<String>
§creation_date: Option<OffsetDateTime>
§deleted_by: Option<String>
§deletion_date: Option<OffsetDateTime>
§is_migrated_to_wit: Option<bool>
§project_id: Option<String>
§test_metadata_id: Option<i32>
§work_item_id: Option<i32>
Implementations§
Trait Implementations§
source§impl Clone for RequirementsToTestsMapping2
impl Clone for RequirementsToTestsMapping2
source§fn clone(&self) -> RequirementsToTestsMapping2
fn clone(&self) -> RequirementsToTestsMapping2
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 RequirementsToTestsMapping2
impl Debug for RequirementsToTestsMapping2
source§impl Default for RequirementsToTestsMapping2
impl Default for RequirementsToTestsMapping2
source§fn default() -> RequirementsToTestsMapping2
fn default() -> RequirementsToTestsMapping2
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RequirementsToTestsMapping2
impl<'de> Deserialize<'de> for RequirementsToTestsMapping2
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 RequirementsToTestsMapping2
impl PartialEq for RequirementsToTestsMapping2
source§fn eq(&self, other: &RequirementsToTestsMapping2) -> bool
fn eq(&self, other: &RequirementsToTestsMapping2) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RequirementsToTestsMapping2
Auto Trait Implementations§
impl RefUnwindSafe for RequirementsToTestsMapping2
impl Send for RequirementsToTestsMapping2
impl Sync for RequirementsToTestsMapping2
impl Unpin for RequirementsToTestsMapping2
impl UnwindSafe for RequirementsToTestsMapping2
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