Packages

final case class Spec[In0, Err0, Out0](input: HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In0], output: HttpCodec[codec.HttpCodecType.Header, Out0], error: HttpCodec[ResponseType, Err0], doc: Doc = Doc.empty) extends EndpointMiddleware with Product with Serializable

Self Type
Spec[In0, Err0, Out0]
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Spec
  2. Serializable
  3. Product
  4. Equals
  5. EndpointMiddleware
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Spec(input: HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In0], output: HttpCodec[codec.HttpCodecType.Header, Out0], error: HttpCodec[ResponseType, Err0], doc: Doc = Doc.empty)

Type Members

  1. final type Err = Err0
    Definition Classes
    SpecEndpointMiddleware
  2. final type In = In0
    Definition Classes
    SpecEndpointMiddleware
  3. final type Out = Out0
    Definition Classes
    SpecEndpointMiddleware

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++(that: EndpointMiddleware)(implicit inCombiner: Combiner[In, EndpointMiddleware.In], outCombiner: Combiner[Out, EndpointMiddleware.Out], errAlternator: Alternator[Err, EndpointMiddleware.Err]): Typed[codec.Combiner.Out, codec.Alternator.Out, codec.Combiner.Out]
    Definition Classes
    EndpointMiddleware
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def ??(doc: Doc): Typed[In, Err, Out]
    Definition Classes
    EndpointMiddleware
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. val doc: Doc
    Definition Classes
    SpecEndpointMiddleware
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. val error: HttpCodec[ResponseType, Err0]
    Definition Classes
    SpecEndpointMiddleware
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def implement[R, S](incoming: (In) => ZIO[R, Err, S])(outgoing: (S) => ZIO[R, Err, Out]): RoutesMiddleware[R, S, Spec.this.type]
    Definition Classes
    EndpointMiddleware
  13. val input: HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In0]
    Definition Classes
    SpecEndpointMiddleware
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def mapBoth[MiddlewareIn2, MiddlewareOut2](f: (HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In]) => HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, MiddlewareIn2], g: (HttpCodec[codec.HttpCodecType.Header, Out]) => HttpCodec[codec.HttpCodecType.Header, MiddlewareOut2]): Typed[MiddlewareIn2, Err, MiddlewareOut2]
    Definition Classes
    EndpointMiddleware
  16. def mapIn[MiddlewareIn2](f: (HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In]) => HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, MiddlewareIn2]): Typed[MiddlewareIn2, Err, Out]
    Definition Classes
    EndpointMiddleware
  17. def mapOut[MiddlewareOut2](f: (HttpCodec[codec.HttpCodecType.Header, Out]) => HttpCodec[codec.HttpCodecType.Header, MiddlewareOut2]): Typed[In, Err, MiddlewareOut2]
    Definition Classes
    EndpointMiddleware
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def optional: Typed[Option[In], Err, Option[Out]]
    Definition Classes
    EndpointMiddleware
  22. def optionalIn: Typed[Option[In], Err, Out]
    Definition Classes
    EndpointMiddleware
  23. def optionalOut: Typed[In, Err, Option[Out]]
    Definition Classes
    EndpointMiddleware
  24. val output: HttpCodec[codec.HttpCodecType.Header, Out0]
    Definition Classes
    SpecEndpointMiddleware
  25. def productElementNames: Iterator[String]
    Definition Classes
    Product
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from EndpointMiddleware

Inherited from AnyRef

Inherited from Any

Ungrouped