All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zio.json.JsonDecoderVersionSpecific.scala Maven / Gradle / Ivy

There is a newer version: 0.7.3
Show newest version
package zio.json

import scala.compiletime.*
import scala.compiletime.ops.any.IsConst

private[json] trait JsonDecoderVersionSpecific {
  inline def derived[A: deriving.Mirror.Of]: JsonDecoder[A] = DeriveJsonDecoder.gen[A]
}

trait DecoderLowPriorityVersionSpecific {

  inline given unionOfStringEnumeration[T](using IsUnionOf[String, T]): JsonDecoder[T] =
    val values = UnionDerivation.constValueUnionTuple[String, T]
    JsonDecoder.string.mapOrFail(
      {
        case raw if values.toList.contains(raw) => Right(raw.asInstanceOf[T])
        case _                                  => Left("expected one of: " + values.toList.mkString(", "))
      }
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy