Type Alias serialport::Result
source · pub type Result<T> = Result<T, Error>;
Expand description
A type for results generated by interacting with serial ports
The Err
type is hard-wired to serialport::Error
.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}