pub struct CoverageEntry {
pub version: String,
pub status: String,
pub source: String,
pub updated_at: String,
}Expand description
One tool’s entry inside a CoverageMap.
status is kept as a plain string (values match the CoverageStatus
snake_case tokens) so an unknown future token degrades to data, not a
parse error — the map is advisory.
Fields§
§version: StringResolved tool version.
status: StringCoverage status token ("built" / "failed" / "net_fallback").
source: StringWhich provisioning path produced the coverage (publisher-owned token).
updated_at: StringWhen the row was last upserted (RFC3339).
Trait Implementations§
Source§impl Clone for CoverageEntry
impl Clone for CoverageEntry
Source§fn clone(&self) -> CoverageEntry
fn clone(&self) -> CoverageEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CoverageEntry
impl Debug for CoverageEntry
Source§impl Default for CoverageEntry
impl Default for CoverageEntry
Source§fn default() -> CoverageEntry
fn default() -> CoverageEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CoverageEntry
impl<'de> Deserialize<'de> for CoverageEntry
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
Auto Trait Implementations§
impl Freeze for CoverageEntry
impl RefUnwindSafe for CoverageEntry
impl Send for CoverageEntry
impl Sync for CoverageEntry
impl Unpin for CoverageEntry
impl UnsafeUnpin for CoverageEntry
impl UnwindSafe for CoverageEntry
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