use crate::devices::DeviceError;
pub trait DevicePathOps {
fn validate_whole_disk_path(path: &str) -> Result<(), DeviceError>;
fn paths_equivalent(listed: &str, selected: &str) -> bool;
fn hint_for_io_error(err: &std::io::Error) -> Option<String> {
let _ = err;
None
}
}