result
The result of the load operation.
Declaration
var result: Result<Output, any Error>? { get }Discussion
A load operation can have the following results:
success(Output)… The load operation has completed successfully.failure(Error)… The load operation failed.nil… The load operation is still in progress.