pub struct LocaleCoverage {
pub locale: String,
pub present: usize,
pub missing: Vec<String>,
pub coverage_percent: f32,
}Expand description
Per-locale coverage statistics.
Fields§
§locale: StringLocale tag (e.g., "en", "ru").
present: usizeNumber of reference keys present (including via fallback).
missing: Vec<String>Keys from the reference set that are missing (even after fallback).
coverage_percent: f32Coverage as a percentage (0.0–100.0).
Trait Implementations§
Source§impl Clone for LocaleCoverage
impl Clone for LocaleCoverage
Source§fn clone(&self) -> LocaleCoverage
fn clone(&self) -> LocaleCoverage
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 LocaleCoverage
impl RefUnwindSafe for LocaleCoverage
impl Send for LocaleCoverage
impl Sync for LocaleCoverage
impl Unpin for LocaleCoverage
impl UnsafeUnpin for LocaleCoverage
impl UnwindSafe for LocaleCoverage
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