ExecutionResult

sealed interface ExecutionResult<out T>

Inheritors

Types

Link copied to clipboard
class Failure(val throwable: Throwable) : ExecutionResult<Nothing>
Link copied to clipboard
Link copied to clipboard
class Success<out T>(val result: T) : ExecutionResult<T>