ValidationResult

sealed class ValidationResult<out T>(source)

Since

0.3.0-beta01

Inheritors

Types

Link copied to clipboard
class Failure(val error: TypeValidationError, val rawValue: JsonElement) : ValidationResult<Nothing>
Link copied to clipboard
class Success<T>(val value: T, val rawValue: JsonElement) : ValidationResult<T>