Files
songparser/src/util.rs
T
phoenix 9b6ccb032f Refactoring (#67)
Reviewed-on: #67
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-10-26 19:49:30 +00:00

7 lines
167 B
Rust

pub fn path_buf_to_string(path: &std::path::Path) -> String {
match path.to_str() {
Some(val) => String::from(val),
None => String::new(),
}
}