pub struct TestDataUploadResponse {
pub coverage_report_id: i64,
pub message: String,
pub status: String,
}Expand description
Response after uploading test data (coverage, test results).
JSON schema
{
"title": "TestDataUploadResponse",
"description": "Response after uploading test data (coverage, test results).",
"type": "object",
"required": [
"coverage_report_id",
"message",
"status"
],
"properties": {
"coverage_report_id": {
"title": "Coverage Report Id",
"type": "integer"
},
"message": {
"title": "Message",
"type": "string"
},
"status": {
"title": "Status",
"type": "string"
}
}
}Fields§
§coverage_report_id: i64§message: String§status: StringImplementations§
Source§impl TestDataUploadResponse
impl TestDataUploadResponse
pub fn builder() -> TestDataUploadResponse
Trait Implementations§
Source§impl Clone for TestDataUploadResponse
impl Clone for TestDataUploadResponse
Source§fn clone(&self) -> TestDataUploadResponse
fn clone(&self) -> TestDataUploadResponse
Returns a duplicate 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 TestDataUploadResponse
impl Debug for TestDataUploadResponse
Source§impl<'de> Deserialize<'de> for TestDataUploadResponse
impl<'de> Deserialize<'de> for TestDataUploadResponse
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 From<&TestDataUploadResponse> for TestDataUploadResponse
impl From<&TestDataUploadResponse> for TestDataUploadResponse
Source§fn from(value: &TestDataUploadResponse) -> Self
fn from(value: &TestDataUploadResponse) -> Self
Converts to this type from the input type.
Source§impl From<TestDataUploadResponse> for TestDataUploadResponse
impl From<TestDataUploadResponse> for TestDataUploadResponse
Source§fn from(value: TestDataUploadResponse) -> Self
fn from(value: TestDataUploadResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for TestDataUploadResponse
impl Serialize for TestDataUploadResponse
Source§impl TryFrom<TestDataUploadResponse> for TestDataUploadResponse
impl TryFrom<TestDataUploadResponse> for TestDataUploadResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: TestDataUploadResponse) -> Result<Self, ConversionError>
fn try_from(value: TestDataUploadResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for TestDataUploadResponse
impl RefUnwindSafe for TestDataUploadResponse
impl Send for TestDataUploadResponse
impl Sync for TestDataUploadResponse
impl Unpin for TestDataUploadResponse
impl UnwindSafe for TestDataUploadResponse
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