pub type WResult<T> = ModalResult<T>;
pub enum WResult<T> { Ok(T), Err(ErrMode<ContextError>), }
Contains the success value
Contains the error value