[][src]Struct galm::Database

pub struct Database {
    pub characters: Characters,
    pub max_distance_size: usize,
}

Database

Fields

characters: Charactersmax_distance_size: usize

Implementations

impl Database[src]

Database

pub fn new() -> Database[src]

Initialize GalM Database instance.

let galm: galm::Database = galm::Database::new();

pub fn get_distance(&self, from: &str, to: &str) -> u8[src]

Get the matching rate of character. Range is 0..galm::Database.max_distance_size. The more similar the two arguments, the smaller the return value.

// Initialize GalM Database instance.
let galm: galm::Database = galm::Database::new();

// Get the matching rate of character.
let distance: u8 = galm.get_distance("王", "玉");

assert_eq!(distance, 30);

pub fn get_word_distance(&self, str1: &str, str2: &str) -> usize[src]

Get the matching rate of word. Range is 0..std::usize::MAX. The more similar the two arguments, the smaller the return value.

// Initialize GalM Database instance.
let galm: galm::Database = galm::Database::new();

let sort_key = "王様";
let mut vec = ["皇様", "玉様", "大様"];

// Sort Example
vec.sort_by_key( |candidate| galm.get_word_distance(sort_key, candidate) );

assert_eq!(vec, ["玉様", "大様", "皇様"]);

Trait Implementations

impl Debug for Database[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.