pub struct TestAuthoringDetails {
pub configuration_id: Option<i32>,
pub is_automated: Option<bool>,
pub last_updated: Option<OffsetDateTime>,
pub point_id: Option<i32>,
pub priority: Option<String>,
pub run_by: Option<String>,
pub state: Option<State>,
pub suite_id: Option<i32>,
pub tester_id: Option<String>,
}Fields§
§configuration_id: Option<i32>§is_automated: Option<bool>§last_updated: Option<OffsetDateTime>§point_id: Option<i32>§priority: Option<String>§run_by: Option<String>§state: Option<State>§suite_id: Option<i32>§tester_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for TestAuthoringDetails
impl Clone for TestAuthoringDetails
Source§fn clone(&self) -> TestAuthoringDetails
fn clone(&self) -> TestAuthoringDetails
Returns a duplicate 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 TestAuthoringDetails
impl Debug for TestAuthoringDetails
Source§impl Default for TestAuthoringDetails
impl Default for TestAuthoringDetails
Source§fn default() -> TestAuthoringDetails
fn default() -> TestAuthoringDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestAuthoringDetails
impl<'de> Deserialize<'de> for TestAuthoringDetails
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 TestAuthoringDetails
impl PartialEq for TestAuthoringDetails
Source§impl Serialize for TestAuthoringDetails
impl Serialize for TestAuthoringDetails
impl StructuralPartialEq for TestAuthoringDetails
Auto Trait Implementations§
impl Freeze for TestAuthoringDetails
impl RefUnwindSafe for TestAuthoringDetails
impl Send for TestAuthoringDetails
impl Sync for TestAuthoringDetails
impl Unpin for TestAuthoringDetails
impl UnwindSafe for TestAuthoringDetails
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