GravatarResult

sealed class GravatarResult<T, E>

Class representing the result of a network operation.

Inheritors

Types

Link copied to clipboard
data class Failure<T, E>(val error: E) : GravatarResult<T, E>

Represents a failed fetch operation.

Link copied to clipboard
data class Success<T, E>(val value: T) : GravatarResult<T, E>

Represents a successful fetch operation.

Functions

Link copied to clipboard
fun valueOrNull(): T?

Shortcut function to ignore a failure.