pub fn find_closest_match<'a>(s: &str, options: &[&'a str]) -> Option<&'a str>
Attempts to find the closest matching string from the list. Returns None if the edit distance is too large.
None