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