[][src]Struct galm::Database

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

Database

Fields

characters: Charactersmax_distance_size: usize

Methods

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. 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 characters similar to the passed in the argument.
let distance: u8 = galm.get_distance("王", "玉");

assert_eq!(distance, 30);

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.