pub type Result<T> = Result<T, KnxError>;
Main result type used throughout the Knx library
pub enum Result<T> { Ok(T), Err(KnxError), }
Contains the success value
Contains the error value