Searched refs:path_split (Results 1 – 1 of 1) sorted by relevance
5 let mut path_split: core::str::SplitN<&str> = path.trim_matches('/').splitn(2, "/"); in split_path() localVariable6 let comp = path_split.next().unwrap_or(""); in split_path()7 let rest_opt = path_split.next(); in split_path()16 let mut path_split: core::str::RSplitN<&str> = path.trim_matches('/').rsplitn(2, "/"); in rsplit_path() localVariable17 let comp = path_split.next().unwrap_or(""); in rsplit_path()18 let rest_opt = path_split.next(); in rsplit_path()