mapErr abstract method
Result<T>
mapErr(
- @noFuturesAllowed Err<T> noFuturesAllowed(
- Err<T> err
)
)
Transforms the inner Err instance if this is an Err.
Implementation
Result<T> mapErr(
@noFuturesAllowed Err<T> Function(Err<T> err) noFuturesAllowed,
);