pub type WaeResult<T> = Result<T, WaeError>;
WAE 结果类型
pub enum WaeResult<T> { Ok(T), Err(WaeError), }
Contains the success value
Contains the error value