pub struct Match {
pub tag: &'static str,
pub name: &'static str,
pub native: &'static str,
pub count: u32,
pub score: f64,
}
Fields§
§tag: &'static str
BCP 47 language tag.
name: &'static str
English name.
native: &'static str
Name in native script.
count: u32
Number of codepoints matched.
score: f64
Score (number of codepoints matched divided by the total).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Match
impl RefUnwindSafe for Match
impl Send for Match
impl Sync for Match
impl Unpin for Match
impl UnwindSafe for Match
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