pub struct CreateTestReportRequest {
pub title: String,
pub reports_contents: Vec<String>,
pub include_passed: bool,
pub include_skipped: bool,
pub link: Option<Url>,
}
Expand description
A struct that describe the request for creating a report
Fields§
§title: String
the title that the generated report should have
reports_contents: Vec<String>
the contents of the test results to parse
include_passed: bool
whether to include passed tests in the generated reports
include_skipped: bool
whether to include skipped tests in the generated reports
link: Option<Url>
optional url to external system, usually a CI pipeline
Trait Implementations§
Source§impl Default for CreateTestReportRequest
impl Default for CreateTestReportRequest
Source§fn default() -> CreateTestReportRequest
fn default() -> CreateTestReportRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateTestReportRequest
impl RefUnwindSafe for CreateTestReportRequest
impl Send for CreateTestReportRequest
impl Sync for CreateTestReportRequest
impl Unpin for CreateTestReportRequest
impl UnwindSafe for CreateTestReportRequest
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