pub fn Ok<T>(value: T) -> Result<T, AnyError>
Returns a result with the error type set to AnyError.
AnyError
Equivalent to Ok::<_, AnyError>(value).
Ok::<_, AnyError>(value)