I tried searching in crates.io but did not find much for "NER" or "named entity". If anybody has used Spacy (Python) in the past, something with similar output to the below would be ideal:
let text = "Today I ate a sandwich with Raul Smith at the Old Oak Cafe".to_string();
let entities = something::extract_entities(&text);
assert_eq!(entities, vec![something::Entities::Person("Raul Smith".to_string()), something::Entities::Business("Old Oak Cafe".to_string())]);