whatlang 0.1.2

Natural language detection library. Identifies language of a given text.
Documentation
use lang::Lang;
use script::Script;

#[derive(PartialEq, Eq, Debug, Clone, Copy)]
pub struct Result {
    pub lang: Lang,
    pub script: Script
}