pub struct Metadata {
pub definition: String,
pub case: String,
pub result: PassFail,
pub namespace: Option<String>,
pub level: Option<String>,
pub duration: Option<String>,
pub extra: Option<String>,
pub error_msg: Option<String>,
pub error_type: Option<ErrorType>,
}
Expand description
The metadata available for a TestCase
from the LAVA API
Fields§
§definition: String
§case: String
§result: PassFail
§namespace: Option<String>
§level: Option<String>
§duration: Option<String>
§extra: Option<String>
§error_msg: Option<String>
§error_type: Option<ErrorType>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Metadata
impl<'de> Deserialize<'de> for Metadata
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