None

zio.http.endpoint.EndpointMiddleware.None
case object None extends EndpointMiddleware

Attributes

Graph
Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type
None.type

Members list

Type members

Types

final type Err = ZNothing
final type In = Unit
final type Out = Unit

Inherited types

type MirroredElemLabels = EmptyTuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Singleton
type MirroredElemTypes = EmptyTuple

Attributes

Inherited from:
Singleton
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror
type MirroredMonoType = Singleton.this.type

The mirrored *-type

The mirrored *-type

Attributes

Inherited from:
Singleton
type MirroredType = Singleton.this.type

Attributes

Inherited from:
Singleton

Value members

Inherited methods

def ++(that: EndpointMiddleware)(implicit inCombiner: Combiner[In, In], outCombiner: Combiner[Out, Out], errAlternator: Alternator[Err, Err]): Typed[Out, Out, Out]

Attributes

Inherited from:
EndpointMiddleware
def ??(doc: Doc): Typed[In, Err, Out]

Attributes

Inherited from:
EndpointMiddleware
def fromProduct(p: Product): MirroredMonoType

Create a new instance of type T with elements taken from product p.

Create a new instance of type T with elements taken from product p.

Attributes

Inherited from:
Singleton
def implement[R, S](incoming: In => ZIO[R, Err, S])(outgoing: S => ZIO[R, Err, Out])(implicit trace: Trace): HandlerAspect[R, S]

Attributes

Inherited from:
EndpointMiddleware
def mapBoth[MiddlewareIn2, MiddlewareOut2](f: HttpCodec[Header & Query & Method, In] => HttpCodec[Header & Query & Method, MiddlewareIn2], g: HttpCodec[Header, Out] => HttpCodec[Header, MiddlewareOut2]): Typed[MiddlewareIn2, Err, MiddlewareOut2]

Attributes

Inherited from:
EndpointMiddleware
def mapIn[MiddlewareIn2](f: HttpCodec[Header & Query & Method, In] => HttpCodec[Header & Query & Method, MiddlewareIn2]): Typed[MiddlewareIn2, Err, Out]

Attributes

Inherited from:
EndpointMiddleware
def mapOut[MiddlewareOut2](f: HttpCodec[Header, Out] => HttpCodec[Header, MiddlewareOut2]): Typed[In, Err, MiddlewareOut2]

Attributes

Inherited from:
EndpointMiddleware
def optional: Typed[Option[In], Err, Option[Out]]

Attributes

Inherited from:
EndpointMiddleware
def optionalIn: Typed[Option[In], Err, Out]

Attributes

Inherited from:
EndpointMiddleware
def optionalOut: Typed[In, Err, Option[Out]]

Attributes

Inherited from:
EndpointMiddleware
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product

Concrete fields

val doc: Doc
val input: HttpCodec[Header & Query & Method, Unit]
val output: HttpCodec[Header, Unit]