Plain

oxygen.http.core.ParamCodec.Plain
See thePlain companion trait
object Plain extends PlainLowPriority1

Attributes

Companion
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Plain.type

Members list

Type members

Classlikes

final case class Many[A](codec: StringCodec[A]) extends Plain[List[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[List[A]]
trait ParamCodec[List[A]]
class Object
trait Matchable
class Any
Show all
final case class ManyNonEmpty[A](codec: StringCodec[A]) extends Plain[NonEmptyList[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[NonEmptyList[A]]
trait ParamCodec[NonEmptyList[A]]
class Object
trait Matchable
class Any
Show all
final case class Optional[A](codec: StringCodec[A]) extends Plain[Option[A]]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[Option[A]]
trait ParamCodec[Option[A]]
class Object
trait Matchable
class Any
Show all
final case class Required[A](codec: StringCodec[A]) extends Plain[A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Plain[A]
trait ParamCodec[A]
class Object
trait Matchable
class Any
Show all

Givens

Givens

given required[A](using codec: StringCodec[A]): Plain[A]

Inherited givens

given many[A](using codec: StringCodec[A]): Plain[List[A]]

Attributes

Inherited from:
PlainLowPriority1
given manyNonEmpty[A](using codec: StringCodec[A]): Plain[NonEmptyList[A]]

Attributes

Inherited from:
PlainLowPriority1
given optional[A](using codec: StringCodec[A]): Plain[Option[A]]

Attributes

Inherited from:
PlainLowPriority1