• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

facet-rs / facet / 19822300060

01 Dec 2025 12:15PM UTC coverage: 54.918% (-3.1%) from 58.04%
19822300060

Pull #978

github

web-flow
Merge 6fbb2f0a3 into e3f8681ec
Pull Request #978: Dodeca: Font subsetting, cache busting, and parser-based URL rewriting

2526 of 6547 new or added lines in 23 files covered. (38.58%)

43 existing lines in 11 files now uncovered.

21374 of 38920 relevant lines covered (54.92%)

152.18 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/facet-core/src/impls_std/path.rs
1
use crate::*;
2

3
unsafe impl Facet<'_> for std::path::PathBuf {
4
    const SHAPE: &'static Shape = &const {
5
        Shape::builder_for_sized::<Self>()
UNCOV
6
            .vtable(value_vtable!(std::path::PathBuf, |f, _opts| write!(
×
7
                f,
×
8
                "{}",
9
                Self::SHAPE.type_identifier
×
10
            )))
11
            .type_identifier("PathBuf")
12
            .ty(Type::User(UserType::Opaque))
13
            .def(Def::Scalar)
14
            .build()
15
    };
16
}
17

18
unsafe impl Facet<'_> for std::path::Path {
19
    const SHAPE: &'static Shape = &const {
20
        Shape::builder_for_unsized::<Self>()
UNCOV
21
            .vtable(value_vtable!(std::path::Path, |f, _opts| write!(
×
22
                f,
×
23
                "{}",
24
                Self::SHAPE.type_identifier
×
25
            )))
26
            .type_identifier("Path")
27
            .ty(Type::User(UserType::Opaque))
28
            .def(Def::Scalar)
29
            .build()
30
    };
31
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc