Struct unicodelanguage::Match
source · pub struct Match {
pub code: String,
pub name: String,
pub native: String,
pub count: u32,
pub score: f32,
}
Fields§
§code: String
ISO 639-1 language code.
name: String
English name.
native: String
Name in native script.
count: u32
Number of codepoints matched.
score: f32
Score (number of codepoints matched divided by the total).
Trait Implementations§
Auto Trait Implementations§
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