Struct azure_devops_rust_api::test::models::TestSession
source · pub struct TestSession {Show 15 fields
pub area: Option<ShallowReference>,
pub comment: Option<String>,
pub end_date: Option<OffsetDateTime>,
pub id: Option<i32>,
pub last_updated_by: Option<IdentityRef>,
pub last_updated_date: Option<OffsetDateTime>,
pub owner: Option<IdentityRef>,
pub project: Option<ShallowReference>,
pub property_bag: Option<PropertyBag>,
pub revision: Option<i32>,
pub source: Option<Source>,
pub start_date: Option<OffsetDateTime>,
pub state: Option<State>,
pub title: Option<String>,
pub url: Option<String>,
}
Expand description
Test Session
Fields§
§area: Option<ShallowReference>
An abstracted reference to some other resource. This class is used to provide the build data contracts with a uniform way to reference other resources in a way that provides easy traversal through links.
comment: Option<String>
Comments in the test session
end_date: Option<OffsetDateTime>
Duration of the session
id: Option<i32>
Id of the test session
last_updated_by: Option<IdentityRef>
§last_updated_date: Option<OffsetDateTime>
Last updated date
owner: Option<IdentityRef>
§project: Option<ShallowReference>
An abstracted reference to some other resource. This class is used to provide the build data contracts with a uniform way to reference other resources in a way that provides easy traversal through links.
property_bag: Option<PropertyBag>
The class to represent a Generic store for test session data.
revision: Option<i32>
Revision of the test session
source: Option<Source>
Source of the test session
start_date: Option<OffsetDateTime>
Start date
state: Option<State>
State of the test session
title: Option<String>
Title of the test session
url: Option<String>
Url of Test Session Resource
Implementations§
source§impl TestSession
impl TestSession
Trait Implementations§
source§impl Clone for TestSession
impl Clone for TestSession
source§fn clone(&self) -> TestSession
fn clone(&self) -> TestSession
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 TestSession
impl Debug for TestSession
source§impl Default for TestSession
impl Default for TestSession
source§fn default() -> TestSession
fn default() -> TestSession
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestSession
impl<'de> Deserialize<'de> for TestSession
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 TestSession
impl PartialEq for TestSession
source§fn eq(&self, other: &TestSession) -> bool
fn eq(&self, other: &TestSession) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestSession
impl Serialize for TestSession
impl StructuralPartialEq for TestSession
Auto Trait Implementations§
impl RefUnwindSafe for TestSession
impl Send for TestSession
impl Sync for TestSession
impl Unpin for TestSession
impl UnwindSafe for TestSession
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