use std::path::PathBuf;
pub const BAUD_RATES: &[(libc::speed_t, u32)] = &[
(libc::B50, 50),
(libc::B75, 75),
(libc::B110, 110),
(libc::B134, 134),
(libc::B150, 150),
(libc::B200, 200),
(libc::B300, 300),
(libc::B600, 600),
(libc::B1200, 1200),
(libc::B1800, 1800),
(libc::B2400, 2400),
(libc::B4800, 4800),
(libc::B9600, 9600),
(libc::B19200, 19200),
(libc::B38400, 38400),
#[cfg(not(target_os = "aix"))]
(libc::B57600, 57600),
#[cfg(not(target_os = "aix"))]
(libc::B115200, 115200),
#[cfg(not(target_os = "aix"))]
(libc::B230400, 230400),
];
pub fn enumerate() -> std::io::Result<Vec<PathBuf>> {
Err(std::io::Error::new(
std::io::ErrorKind::Other,
"port enumeration is not implemented for this platform",
))
}