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 for TestLogReference
impl PartialEq for TestLogReference
Source§impl Serialize for TestLogReference
impl Serialize for TestLogReference
impl StructuralPartialEq for TestLogReference
Auto Trait Implementations§
impl Freeze for TestLogReference
impl RefUnwindSafe for TestLogReference
impl Send for TestLogReference
impl Sync for TestLogReference
impl Unpin for TestLogReference
impl UnwindSafe for TestLogReference
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