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