Struct azure_devops_rust_api::test::models::TestLogReference
source · pub struct TestLogReference {
pub build_id: Option<i32>,
pub file_path: Option<String>,
pub release_env_id: Option<i32>,
pub release_id: Option<i32>,
pub result_id: Option<i32>,
pub run_id: Option<i32>,
pub scope: Option<Scope>,
pub sub_result_id: Option<i32>,
pub type_: Option<Type>,
}Expand description
Test Log Reference object
Fields§
§build_id: Option<i32>BuildId for test log, if context is build
file_path: Option<String>FileName for log file
release_env_id: Option<i32>ReleaseEnvId for test log, if context is Release
release_id: Option<i32>ReleaseId for test log, if context is Release
result_id: Option<i32>Resultid for test log, if context is run and log is related to result
run_id: Option<i32>runid for test log, if context is run
scope: Option<Scope>Test Log Scope
sub_result_id: Option<i32>SubResultid for test log, if context is run and log is related to subresult
type_: Option<Type>Log Type
Implementations§
Trait Implementations§
source§impl Clone for TestLogReference
impl Clone for TestLogReference
source§fn clone(&self) -> TestLogReference
fn clone(&self) -> TestLogReference
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 TestLogReference
impl Debug for TestLogReference
source§impl Default for TestLogReference
impl Default for TestLogReference
source§fn default() -> TestLogReference
fn default() -> TestLogReference
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestLogReference
impl<'de> Deserialize<'de> for TestLogReference
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<TestLogReference> for TestLogReference
impl PartialEq<TestLogReference> for TestLogReference
source§fn eq(&self, other: &TestLogReference) -> bool
fn eq(&self, other: &TestLogReference) -> bool
This method tests for
self and other values to be equal, and is used
by ==.