pub struct TestSessionExploredWorkItemReference {
pub test_session_work_item_reference: TestSessionWorkItemReference,
pub associated_work_items: Vec<TestSessionWorkItemReference>,
pub end_time: Option<OffsetDateTime>,
pub start_time: Option<OffsetDateTime>,
}
Expand description
Fields§
§test_session_work_item_reference: TestSessionWorkItemReference
§associated_work_items: Vec<TestSessionWorkItemReference>
Workitem references of workitems filed as a part of the current workitem exploration.
end_time: Option<OffsetDateTime>
Time when exploration of workitem ended.
start_time: Option<OffsetDateTime>
Time when explore of workitem was started.
Implementations§
Trait Implementations§
source§impl Clone for TestSessionExploredWorkItemReference
impl Clone for TestSessionExploredWorkItemReference
source§fn clone(&self) -> TestSessionExploredWorkItemReference
fn clone(&self) -> TestSessionExploredWorkItemReference
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 Default for TestSessionExploredWorkItemReference
impl Default for TestSessionExploredWorkItemReference
source§fn default() -> TestSessionExploredWorkItemReference
fn default() -> TestSessionExploredWorkItemReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestSessionExploredWorkItemReference
impl<'de> Deserialize<'de> for TestSessionExploredWorkItemReference
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 TestSessionExploredWorkItemReference
impl PartialEq for TestSessionExploredWorkItemReference
source§fn eq(&self, other: &TestSessionExploredWorkItemReference) -> bool
fn eq(&self, other: &TestSessionExploredWorkItemReference) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TestSessionExploredWorkItemReference
Auto Trait Implementations§
impl RefUnwindSafe for TestSessionExploredWorkItemReference
impl Send for TestSessionExploredWorkItemReference
impl Sync for TestSessionExploredWorkItemReference
impl Unpin for TestSessionExploredWorkItemReference
impl UnwindSafe for TestSessionExploredWorkItemReference
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