pub type WfpResult<T> = Result<T, WfpError>;
pub enum WfpResult<T> { Ok(T), Err(WfpError), }
Contains the success value
Contains the error value