Function rhyme::rhymes[][src]

pub fn rhymes(left: &str, right: &str) -> Result<Option<bool>>

Shortcut for downloading the CMU Dict and testing the two words

if rhyme::rhymes("rust", "trust")?.unwrap_or(false) {
    println!("'rust' and 'trust' rhyme");
}