pub struct CoverageReport {
pub language: String,
pub format: String,
pub git_commit: String,
pub git_branch: String,
pub timestamp: String,
pub environment: String,
pub content: Option<CoverageContent>,
pub file_path: String,
pub content_type: String,
pub file_size_bytes: u64,
}Fields§
§language: String§format: String§git_commit: String§git_branch: String§timestamp: String§environment: String§content: Option<CoverageContent>§file_path: String§content_type: String§file_size_bytes: u64Trait Implementations§
Source§impl Clone for CoverageReport
impl Clone for CoverageReport
Source§fn clone(&self) -> CoverageReport
fn clone(&self) -> CoverageReport
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 moreAuto Trait Implementations§
impl Freeze for CoverageReport
impl RefUnwindSafe for CoverageReport
impl Send for CoverageReport
impl Sync for CoverageReport
impl Unpin for CoverageReport
impl UnwindSafe for CoverageReport
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