![JAR search and dependency download from the Maven repository](/logo.png)
io.github.shogowada.scala.jsonrpc.serializers.JsonSerializer.scala Maven / Gradle / Ivy
package io.github.shogowada.scala.jsonrpc.serializers
trait JsonSerializer {
def serialize[T](value: T): Option[String] = {
throw new UnsupportedOperationException("This default implementation is here only to allow macros to be defined on child classes.")
}
def deserialize[T](json: String): Option[T] = {
throw new UnsupportedOperationException("This default implementation is here only to allow macros to be defined on child classes.")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy