//! # FdCanUSB
//! An implementation of the [FdCanUSB](https://mjbots.com/products/fdcanusb) (by [MJBots](https://mjbots.com/)) protocol.
//!
//! ### Example
//! ```
//! use fdcanusb::{FdCanUSB, serial2};
//! # fn main() -> Result<(), std::io::Error> {
//! let mut fdcanusb = FdCanUSB::open("/dev/fdcanusb");
//! # Ok(())
//! # }
//! ```
pub use FdCanUSB;
pub use *;
pub use ;
pub use serial2;