PathCodec

harness.endpoint.spec.PathCodec$
See thePathCodec companion trait
object PathCodec

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
PathCodec.type

Members list

Type members

Classlikes

final case class Const(p: String) extends PathCodec[Unit]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[Unit]
class Object
trait Matchable
class Any
Show all
case object Empty extends PathCodec[Unit]

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait PathCodec[Unit]
class Object
trait Matchable
class Any
Show all
Self type
Empty.type
final case class IMap[A, B](parent: PathCodec[A], to: A => B, from: B => A) extends PathCodec[B]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[B]
class Object
trait Matchable
class Any
Show all
final case class IMapDecode[A, B](parent: PathCodec[A], to: A => Option[B], from: B => A) extends PathCodec[B]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[B]
class Object
trait Matchable
class Any
Show all
final case class OneOf[A](options: NonEmptyList[PathCodec[_ <: A]], enc: A => List[String]) extends PathCodec[A]

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[A]
class Object
trait Matchable
class Any
Show all
object OneOf

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
OneOf.type
final case class Param[A](name: String, schema: Schema[A]) extends PathCodec[A]

Attributes

Companion
object
Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[A]
class Object
trait Matchable
class Any
Show all
object Param

Attributes

Companion
class
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Param.type
final case class Rest(name: String) extends PathCodec[List[String]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[List[String]]
class Object
trait Matchable
class Any
Show all
final case class RestNonEmpty(name: String) extends PathCodec[NonEmptyList[String]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[NonEmptyList[String]]
class Object
trait Matchable
class Any
Show all
final case class Then[A, B, O](a: PathCodec[A], b: PathCodec[B], z: Out[A, B, O]) extends PathCodec[O]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait PathCodec[O]
class Object
trait Matchable
class Any
Show all

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror