pub type Result<T> = Result<T, WireError>;
Result type for wire operations
pub enum Result<T> { Ok(T), Err(WireError), }
Contains the success value
Contains the error value