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

upickle.MsgReadWriters.scala Maven / Gradle / Ivy

There is a newer version: 4.0.2
Show newest version
package upickle

import upickle.core.Visitor
import upickle.implicits.MacroImplicits


trait MsgReadWriters extends upickle.core.Types with MacroImplicits {
  implicit val MsgValueR: Reader[upack.Msg] = new Reader.Delegate(upack.Msg)

  implicit val MsgValueW: Writer[upack.Msg] = new Writer[upack.Msg] {
    def write0[R](out: Visitor[_, R], v: upack.Msg): R = upack.transform(v, out)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy