Packages

trait AuthenticationResources extends Directives with FailFastCirceSupport

Linear Supertypes
FailFastCirceSupport, FailFastUnmarshaller, BaseCirceSupport, Directives, AttributeDirectives, FramedEntityStreamingDirectives, WebSocketDirectives, SecurityDirectives, SchemeDirectives, RouteDirectives, RespondWithDirectives, RangeDirectives, PathDirectives, ImplicitPathMatcherConstruction, PathMatchers, TimeoutDirectives, ParameterDirectives, ParameterDirectivesInstances, MiscDirectives, MethodDirectives, MarshallingDirectives, HostDirectives, HeaderDirectives, FutureDirectives, FormFieldDirectives, ToNameReceptacleEnhancements, FormFieldDirectivesInstances, FileUploadDirectives, FileAndResourceDirectives, ExecutionDirectives, CodingDirectives, DebuggingDirectives, CookieDirectives, CacheConditionDirectives, BasicDirectives, RouteConcatenation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AuthenticationResources
  2. FailFastCirceSupport
  3. FailFastUnmarshaller
  4. BaseCirceSupport
  5. Directives
  6. AttributeDirectives
  7. FramedEntityStreamingDirectives
  8. WebSocketDirectives
  9. SecurityDirectives
  10. SchemeDirectives
  11. RouteDirectives
  12. RespondWithDirectives
  13. RangeDirectives
  14. PathDirectives
  15. ImplicitPathMatcherConstruction
  16. PathMatchers
  17. TimeoutDirectives
  18. ParameterDirectives
  19. ParameterDirectivesInstances
  20. MiscDirectives
  21. MethodDirectives
  22. MarshallingDirectives
  23. HostDirectives
  24. HeaderDirectives
  25. FutureDirectives
  26. FormFieldDirectives
  27. ToNameReceptacleEnhancements
  28. FormFieldDirectivesInstances
  29. FileUploadDirectives
  30. FileAndResourceDirectives
  31. ExecutionDirectives
  32. CodingDirectives
  33. DebuggingDirectives
  34. CookieDirectives
  35. CacheConditionDirectives
  36. BasicDirectives
  37. RouteConcatenation
  38. AnyRef
  39. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AsyncAuthenticator[T] = (Credentials) ⇒ Future[Option[T]]
    Definition Classes
    SecurityDirectives
  2. type AsyncAuthenticatorPF[T] = PartialFunction[Credentials, Future[T]]
    Definition Classes
    SecurityDirectives
  3. type AuthenticationResult[+T] = Either[HttpChallenge, T]
    Definition Classes
    SecurityDirectives
  4. type Authenticator[T] = (Credentials) ⇒ Option[T]
    Definition Classes
    SecurityDirectives
  5. type AuthenticatorPF[T] = PartialFunction[Credentials, T]
    Definition Classes
    SecurityDirectives
  6. abstract class NumberMatcher[T] extends PathMatcher1[T]
    Definition Classes
    PathMatchers
  7. type RequestToSourceUnmarshaller[T] = Unmarshaller[HttpRequest, Source[T, NotUsed]]
    Definition Classes
    FramedEntityStreamingDirectives
  8. type SourceOf[A] = Source[A, _]
    Definition Classes
    BaseCirceSupport

Abstract Value Members

  1. abstract def authenticate(): Directive1[AuthenticatedUser]
  2. abstract val frontendStrategySettings: FrontendStrategySettings
  3. abstract val name: String

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val DoubleNumber: PathMatcher1[Double]
    Definition Classes
    PathMatchers
  5. val JavaUUID: PathMatcher1[UUID]
    Definition Classes
    PathMatchers
  6. val Neutral: PathMatcher0
    Definition Classes
    PathMatchers
  7. def Segments(min: Int, max: Int): PathMatcher1[List[String]]
    Definition Classes
    PathMatchers
  8. def Segments(count: Int): PathMatcher1[List[String]]
    Definition Classes
    PathMatchers
  9. val Segments: PathMatcher1[List[String]]
    Definition Classes
    PathMatchers
  10. def _defaultClassLoader: ClassLoader
    Attributes
    protected[http]
    Definition Classes
    FileAndResourceDirectives
  11. implicit def _enhanceRouteWithConcatenation(route: Route): RouteWithConcatenation
    Definition Classes
    RouteConcatenation
  12. implicit def _regex2PathMatcher(regex: Regex): PathMatcher1[String]
    Definition Classes
    ImplicitPathMatcherConstruction
  13. implicit def _segmentStringToPathMatcher(segment: String): PathMatcher0
    Definition Classes
    ImplicitPathMatcherConstruction
  14. implicit def _string2NR(string: String): NameReceptacle[String]
    Definition Classes
    ToNameReceptacleEnhancements
    Annotations
    @implicitAmbiguous( ... )
  15. implicit def _stringExtractionPair2PathMatcher[T](tuple: (String, T)): PathMatcher1[T]
    Definition Classes
    ImplicitPathMatcherConstruction
  16. implicit def _stringNameOptionReceptacle2PathMatcher(nr: NameOptionReceptacle[String]): PathMatcher0
    Definition Classes
    ImplicitPathMatcherConstruction
  17. implicit def _symbol2NR(symbol: Symbol): NameReceptacle[String]
    Definition Classes
    ToNameReceptacleEnhancements
  18. implicit def _valueMap2PathMatcher[T](valueMap: Map[String, T]): PathMatcher1[T]
    Definition Classes
    ImplicitPathMatcherConstruction
  19. lazy val additionalRoute: Route
    Attributes
    protected
  20. def as[T](implicit um: FromRequestUnmarshaller[T]): FromRequestUnmarshaller[T]
    Definition Classes
    MarshallingDirectives
  21. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  22. final def asSourceOf[T](support: EntityStreamingSupport)(implicit um: FromByteStringUnmarshaller[T]): RequestToSourceUnmarshaller[T]
    Definition Classes
    FramedEntityStreamingDirectives
  23. final def asSourceOf[T](implicit um: FromByteStringUnmarshaller[T], support: EntityStreamingSupport): RequestToSourceUnmarshaller[T]
    Definition Classes
    FramedEntityStreamingDirectives
  24. def attribute[T](key: AttributeKey[T]): Directive1[T]
    Definition Classes
    AttributeDirectives
  25. def authenticateBasic[T](realm: String, authenticator: Authenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  26. def authenticateBasicAsync[T](realm: String, authenticator: AsyncAuthenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  27. def authenticateBasicPF[T](realm: String, authenticator: AuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  28. def authenticateBasicPFAsync[T](realm: String, authenticator: AsyncAuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  29. def authenticateOAuth2[T](realm: String, authenticator: Authenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  30. def authenticateOAuth2Async[T](realm: String, authenticator: AsyncAuthenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  31. def authenticateOAuth2PF[T](realm: String, authenticator: AuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  32. def authenticateOAuth2PFAsync[T](realm: String, authenticator: AsyncAuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  33. def authenticateOrRejectWithChallenge[C <: HttpCredentials, T](authenticator: (Option[C]) ⇒ Future[AuthenticationResult[T]])(implicit arg0: ClassTag[C]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  34. def authenticateOrRejectWithChallenge[T](authenticator: (Option[HttpCredentials]) ⇒ Future[AuthenticationResult[T]]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  35. def authorize(check: (RequestContext) ⇒ Boolean): Directive0
    Definition Classes
    SecurityDirectives
  36. def authorize(check: ⇒ Boolean): Directive0
    Definition Classes
    SecurityDirectives
  37. def authorizeAsync(check: (RequestContext) ⇒ Future[Boolean]): Directive0
    Definition Classes
    SecurityDirectives
  38. def authorizeAsync(check: ⇒ Future[Boolean]): Directive0
    Definition Classes
    SecurityDirectives
  39. def byteStringJsonUnmarshaller: Unmarshaller[ByteString, Json]
    Definition Classes
    BaseCirceSupport
  40. def cancelRejection(rejection: Rejection): Directive0
    Definition Classes
    BasicDirectives
  41. def cancelRejections(cancelFilter: (Rejection) ⇒ Boolean): Directive0
    Definition Classes
    BasicDirectives
  42. def cancelRejections(classes: Class[_]*): Directive0
    Definition Classes
    BasicDirectives
  43. def checkSameOrigin(allowed: Default): Directive0
    Definition Classes
    HeaderDirectives
  44. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  45. def complete[T](status: StatusCode, headers: Seq[HttpHeader], v: ⇒ T)(implicit m: ToEntityMarshaller[T]): StandardRoute
    Definition Classes
    RouteDirectives
  46. def complete[T](status: StatusCode, v: ⇒ T)(implicit m: ToEntityMarshaller[T]): StandardRoute
    Definition Classes
    RouteDirectives
  47. def complete(m: ⇒ ToResponseMarshallable): StandardRoute
    Definition Classes
    RouteDirectives
  48. def completeOrRecoverWith(magnet: CompleteOrRecoverWithMagnet): Directive1[Throwable]
    Definition Classes
    FutureDirectives
  49. def completeWith[T](marshaller: ToResponseMarshaller[T])(inner: ((T) ⇒ Unit) ⇒ Unit): Route
    Definition Classes
    MarshallingDirectives
  50. def concat(routes: Route*): Route
    Definition Classes
    RouteConcatenation
  51. def conditional(eTag: Option[EntityTag], lastModified: Option[DateTime]): Directive0
    Definition Classes
    CacheConditionDirectives
  52. def conditional(eTag: EntityTag, lastModified: DateTime): Directive0
    Definition Classes
    CacheConditionDirectives
  53. def conditional(lastModified: DateTime): Directive0
    Definition Classes
    CacheConditionDirectives
  54. def conditional(eTag: EntityTag): Directive0
    Definition Classes
    CacheConditionDirectives
  55. def cookie(name: String): Directive1[HttpCookiePair]
    Definition Classes
    CookieDirectives
  56. def decodeRequest: Directive0
    Definition Classes
    CodingDirectives
  57. def decodeRequestWith(decoders: Decoder*): Directive0
    Definition Classes
    CodingDirectives
  58. def decodeRequestWith(decoder: Decoder): Directive0
    Definition Classes
    CodingDirectives
  59. def delete: Directive0
    Definition Classes
    MethodDirectives
  60. def deleteCookie(name: String, domain: String, path: String): Directive0
    Definition Classes
    CookieDirectives
  61. def deleteCookie(first: HttpCookie, more: HttpCookie*): Directive0
    Definition Classes
    CookieDirectives
  62. def encodeResponse: Directive0
    Definition Classes
    CodingDirectives
  63. def encodeResponseWith(first: Encoder, more: Encoder*): Directive0
    Definition Classes
    CodingDirectives
  64. def entity[T](um: FromRequestUnmarshaller[T]): Directive1[T]
    Definition Classes
    MarshallingDirectives
  65. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  66. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  67. def extract[T](f: (RequestContext) ⇒ T): Directive1[T]
    Definition Classes
    BasicDirectives
  68. def extractActorSystem: Directive1[ActorSystem]
    Definition Classes
    BasicDirectives
  69. def extractClientIP: Directive1[RemoteAddress]
    Definition Classes
    MiscDirectives
  70. def extractCredentials: Directive1[Option[HttpCredentials]]
    Definition Classes
    SecurityDirectives
  71. def extractDataBytes: Directive1[Source[ByteString, Any]]
    Definition Classes
    BasicDirectives
  72. def extractExecutionContext: Directive1[ExecutionContextExecutor]
    Definition Classes
    BasicDirectives
  73. def extractHost: Directive1[String]
    Definition Classes
    HostDirectives
  74. def extractLog: Directive1[LoggingAdapter]
    Definition Classes
    BasicDirectives
  75. def extractMatchedPath: Directive1[Path]
    Definition Classes
    BasicDirectives
  76. def extractMaterializer: Directive1[Materializer]
    Definition Classes
    BasicDirectives
  77. def extractMethod: Directive1[HttpMethod]
    Definition Classes
    MethodDirectives
  78. def extractOfferedWsProtocols: Directive1[Seq[String]]
    Definition Classes
    WebSocketDirectives
  79. def extractParserSettings: Directive1[ParserSettings]
    Definition Classes
    BasicDirectives
  80. def extractRequest: Directive1[HttpRequest]
    Definition Classes
    BasicDirectives
  81. def extractRequestContext: Directive1[RequestContext]
    Definition Classes
    BasicDirectives
  82. def extractRequestEntity: Directive1[RequestEntity]
    Definition Classes
    BasicDirectives
  83. def extractRequestTimeout: Directive1[Duration]
    Definition Classes
    TimeoutDirectives
  84. def extractScheme: Directive1[String]
    Definition Classes
    SchemeDirectives
  85. def extractSettings: Directive1[RoutingSettings]
    Definition Classes
    BasicDirectives
  86. def extractStrictEntity(timeout: FiniteDuration, maxBytes: Long): Directive1[Strict]
    Definition Classes
    BasicDirectives
  87. def extractStrictEntity(timeout: FiniteDuration): Directive1[Strict]
    Definition Classes
    BasicDirectives
  88. def extractUnmatchedPath: Directive1[Path]
    Definition Classes
    BasicDirectives
  89. def extractUri: Directive1[Uri]
    Definition Classes
    BasicDirectives
  90. def extractWebSocketUpgrade: Directive1[WebSocketUpgrade]
    Definition Classes
    WebSocketDirectives
  91. def failWith(error: Throwable): StandardRoute
    Definition Classes
    RouteDirectives
  92. def fileUpload(fieldName: String): Directive1[(FileInfo, Source[ByteString, Any])]
    Definition Classes
    FileUploadDirectives
  93. def fileUploadAll(fieldName: String): Directive1[Seq[(FileInfo, Source[ByteString, Any])]]
    Definition Classes
    FileUploadDirectives
    Annotations
    @ApiMayChange()
  94. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec, pdef22: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  95. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  96. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  97. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  98. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  99. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  100. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  101. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  102. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  103. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  104. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  105. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  106. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  107. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  108. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  109. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  110. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  111. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  112. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  113. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec): Directive[(Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  114. def formField(pdef1: FieldSpec, pdef2: FieldSpec): Directive[(Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  115. def formField(pdef1: FieldSpec): Directive[(Out)]
    Definition Classes
    FormFieldDirectivesInstances
  116. def formFieldMap: Directive1[Map[String, String]]
    Definition Classes
    FormFieldDirectives
  117. def formFieldMultiMap: Directive1[Map[String, List[String]]]
    Definition Classes
    FormFieldDirectives
  118. def formFieldSeq: Directive1[Seq[(String, String)]]
    Definition Classes
    FormFieldDirectives
  119. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec, pdef22: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  120. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  121. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  122. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  123. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  124. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  125. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  126. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  127. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  128. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  129. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  130. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  131. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  132. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  133. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  134. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  135. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  136. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  137. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  138. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec): Directive[(Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  139. def formFields(pdef1: FieldSpec, pdef2: FieldSpec): Directive[(Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  140. def formFields(pdef1: FieldSpec): Directive[(Out)]
    Definition Classes
    FormFieldDirectivesInstances
  141. implicit final def fromByteStringUnmarshaller[A](implicit arg0: Decoder[A]): Unmarshaller[ByteString, A]
    Definition Classes
    FailFastUnmarshaller
  142. lazy val frontendSettingsRoute: Route
    Attributes
    protected
  143. def get: Directive0
    Definition Classes
    MethodDirectives
  144. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  145. def getFromBrowseableDirectories(directories: String*)(implicit renderer: DirectoryRenderer, resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  146. def getFromBrowseableDirectory(directory: String)(implicit renderer: DirectoryRenderer, resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  147. def getFromDirectory(directoryName: String)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  148. def getFromFile(file: File, contentType: ContentType): Route
    Definition Classes
    FileAndResourceDirectives
  149. def getFromFile(file: File)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  150. def getFromFile(fileName: String)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  151. def getFromResource(resourceName: String, contentType: ContentType, classLoader: ClassLoader): Route
    Definition Classes
    FileAndResourceDirectives
  152. def getFromResource(resourceName: String)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  153. def getFromResourceDirectory(directoryName: String, classLoader: ClassLoader)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  154. def handle(handler: PartialFunction[HttpRequest, Future[HttpResponse]], rejections: Seq[Rejection]): StandardRoute
    Definition Classes
    RouteDirectives
  155. def handle(handler: PartialFunction[HttpRequest, Future[HttpResponse]]): StandardRoute
    Definition Classes
    RouteDirectives
  156. def handle(handler: (HttpRequest) ⇒ Future[HttpResponse]): StandardRoute
    Definition Classes
    RouteDirectives
  157. def handleExceptions(handler: ExceptionHandler): Directive0
    Definition Classes
    ExecutionDirectives
  158. def handleRejections(handler: RejectionHandler): Directive0
    Definition Classes
    ExecutionDirectives
  159. def handleSync(handler: PartialFunction[HttpRequest, HttpResponse], rejections: Seq[Rejection]): StandardRoute
    Definition Classes
    RouteDirectives
  160. def handleSync(handler: PartialFunction[HttpRequest, HttpResponse]): StandardRoute
    Definition Classes
    RouteDirectives
  161. def handleSync(handler: (HttpRequest) ⇒ HttpResponse): StandardRoute
    Definition Classes
    RouteDirectives
  162. def handleWebSocketMessages(handler: Flow[Message, Message, Any]): Route
    Definition Classes
    WebSocketDirectives
  163. def handleWebSocketMessagesForOptionalProtocol(handler: Flow[Message, Message, Any], subprotocol: Option[String]): Route
    Definition Classes
    WebSocketDirectives
  164. def handleWebSocketMessagesForProtocol(handler: Flow[Message, Message, Any], subprotocol: String): Route
    Definition Classes
    WebSocketDirectives
  165. def handleWith[A, B](f: (A) ⇒ B)(implicit um: FromRequestUnmarshaller[A], m: ToResponseMarshaller[B]): Route
    Definition Classes
    MarshallingDirectives
  166. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  167. def head: Directive0
    Definition Classes
    MethodDirectives
  168. def headerValue[T](f: (HttpHeader) ⇒ Option[T]): Directive1[T]
    Definition Classes
    HeaderDirectives
  169. def headerValueByName(headerName: String): Directive1[String]
    Definition Classes
    HeaderDirectives
  170. def headerValueByType[T](magnet: HeaderMagnet[T]): Directive1[T]
    Definition Classes
    HeaderDirectives
  171. def headerValuePF[T](pf: PartialFunction[HttpHeader, T]): Directive1[T]
    Definition Classes
    HeaderDirectives
  172. def host(regex: Regex): Directive1[String]
    Definition Classes
    HostDirectives
  173. def host(predicate: (String) ⇒ Boolean): Directive0
    Definition Classes
    HostDirectives
  174. def host(hostNames: String*): Directive0
    Definition Classes
    HostDirectives
  175. def ignoreTrailingSlash: Directive0
    Definition Classes
    PathDirectives
  176. def instanceOf[T](implicit m: ToResponseMarshaller[T]): ToResponseMarshaller[T]
    Definition Classes
    MarshallingDirectives
  177. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  178. implicit final def jsonMarshaller(implicit printer: Printer): ToEntityMarshaller[Json]
    Definition Classes
    BaseCirceSupport
  179. implicit final val jsonUnmarshaller: FromEntityUnmarshaller[Json]
    Definition Classes
    BaseCirceSupport
  180. def listDirectoryContents(directories: String*)(implicit renderer: DirectoryRenderer): Route
    Definition Classes
    FileAndResourceDirectives
  181. def logRequest(magnet: LoggingMagnet[(HttpRequest) ⇒ Unit]): Directive0
    Definition Classes
    DebuggingDirectives
  182. def logRequestResult(magnet: LoggingMagnet[(HttpRequest) ⇒ (RouteResult) ⇒ Unit]): Directive0
    Definition Classes
    DebuggingDirectives
  183. def logResult(magnet: LoggingMagnet[(RouteResult) ⇒ Unit]): Directive0
    Definition Classes
    DebuggingDirectives
  184. def mapInnerRoute(f: (Route) ⇒ Route): Directive0
    Definition Classes
    BasicDirectives
  185. def mapRejections(f: (Seq[Rejection]) ⇒ Seq[Rejection]): Directive0
    Definition Classes
    BasicDirectives
  186. def mapRequest(f: (HttpRequest) ⇒ HttpRequest): Directive0
    Definition Classes
    BasicDirectives
  187. def mapRequestContext(f: (RequestContext) ⇒ RequestContext): Directive0
    Definition Classes
    BasicDirectives
  188. def mapResponse(f: (HttpResponse) ⇒ HttpResponse): Directive0
    Definition Classes
    BasicDirectives
  189. def mapResponseEntity(f: (ResponseEntity) ⇒ ResponseEntity): Directive0
    Definition Classes
    BasicDirectives
  190. def mapResponseHeaders(f: (Seq[HttpHeader]) ⇒ Seq[HttpHeader]): Directive0
    Definition Classes
    BasicDirectives
  191. def mapRouteResult(f: (RouteResult) ⇒ RouteResult): Directive0
    Definition Classes
    BasicDirectives
  192. def mapRouteResultFuture(f: (Future[RouteResult]) ⇒ Future[RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  193. def mapRouteResultPF(f: PartialFunction[RouteResult, RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  194. def mapRouteResultWith(f: (RouteResult) ⇒ Future[RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  195. def mapRouteResultWithPF(f: PartialFunction[RouteResult, Future[RouteResult]]): Directive0
    Definition Classes
    BasicDirectives
  196. def mapSettings(f: (RoutingSettings) ⇒ RoutingSettings): Directive0
    Definition Classes
    BasicDirectives
  197. def mapUnmatchedPath(f: (Path) ⇒ Path): Directive0
    Definition Classes
    BasicDirectives
  198. implicit final def marshaller[A](implicit arg0: Encoder[A], printer: Printer): ToEntityMarshaller[A]
    Definition Classes
    BaseCirceSupport
  199. def mediaTypes: Seq[WithFixedCharset]
    Definition Classes
    BaseCirceSupport
  200. def method(httpMethod: HttpMethod): Directive0
    Definition Classes
    MethodDirectives
  201. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  202. def not(self: PathMatcher[_]): PathMatcher0
    Definition Classes
    PathMatchers
  203. def nothingMatcher[L](implicit arg0: Tuple[L]): PathMatcher[L]
    Definition Classes
    PathMatchers
  204. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  205. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  206. def onComplete[T](future: ⇒ Future[T]): Directive1[Try[T]]
    Definition Classes
    FutureDirectives
  207. def onCompleteWithBreaker[T](breaker: CircuitBreaker)(future: ⇒ Future[T]): Directive1[Try[T]]
    Definition Classes
    FutureDirectives
  208. def onSuccess(magnet: OnSuccessMagnet): Directive[Out]
    Definition Classes
    FutureDirectives
  209. def optionalAttribute[T](key: AttributeKey[T]): Directive1[Option[T]]
    Definition Classes
    AttributeDirectives
  210. def optionalCookie(name: String): Directive1[Option[HttpCookiePair]]
    Definition Classes
    CookieDirectives
  211. def optionalHeaderValue[T](f: (HttpHeader) ⇒ Option[T]): Directive1[Option[T]]
    Definition Classes
    HeaderDirectives
  212. def optionalHeaderValueByName(headerName: String): Directive1[Option[String]]
    Definition Classes
    HeaderDirectives
  213. def optionalHeaderValueByType[T <: HttpHeader](magnet: HeaderMagnet[T]): Directive1[Option[T]]
    Definition Classes
    HeaderDirectives
  214. def optionalHeaderValuePF[T](pf: PartialFunction[HttpHeader, T]): Directive1[Option[T]]
    Definition Classes
    HeaderDirectives
  215. def options: Directive0
    Definition Classes
    MethodDirectives
  216. def overrideMethodWithParameter(paramName: String): Directive0
    Definition Classes
    MethodDirectives
  217. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec, pdef22: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  218. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  219. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  220. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  221. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  222. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  223. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  224. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  225. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  226. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  227. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  228. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  229. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  230. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  231. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  232. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  233. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  234. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  235. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  236. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec): Directive[(Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  237. def parameter(pdef1: ParamSpec, pdef2: ParamSpec): Directive[(Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  238. def parameter(pdef1: ParamSpec): Directive[(Out)]
    Definition Classes
    ParameterDirectivesInstances
  239. def parameterMap: Directive1[Map[String, String]]
    Definition Classes
    ParameterDirectives
  240. def parameterMultiMap: Directive1[Map[String, List[String]]]
    Definition Classes
    ParameterDirectives
  241. def parameterSeq: Directive1[Seq[(String, String)]]
    Definition Classes
    ParameterDirectives
  242. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec, pdef22: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  243. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  244. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  245. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  246. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  247. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  248. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  249. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  250. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  251. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  252. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  253. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  254. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  255. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  256. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  257. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  258. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  259. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  260. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  261. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec): Directive[(Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  262. def parameters(pdef1: ParamSpec, pdef2: ParamSpec): Directive[(Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  263. def parameters(pdef1: ParamSpec): Directive[(Out)]
    Definition Classes
    ParameterDirectivesInstances
  264. def pass: Directive0
    Definition Classes
    BasicDirectives
  265. def patch: Directive0
    Definition Classes
    MethodDirectives
  266. def path[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  267. def pathEnd: Directive0
    Definition Classes
    PathDirectives
  268. def pathEndOrSingleSlash: Directive0
    Definition Classes
    PathDirectives
  269. def pathPrefix[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  270. def pathPrefixTest[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  271. def pathSingleSlash: Directive0
    Definition Classes
    PathDirectives
  272. def pathSuffix[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  273. def pathSuffixTest[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  274. def post: Directive0
    Definition Classes
    MethodDirectives
  275. def provide[T](value: T): Directive1[T]
    Definition Classes
    BasicDirectives
  276. def put: Directive0
    Definition Classes
    MethodDirectives
  277. def rawPathPrefix[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  278. def rawPathPrefixTest[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  279. def recoverRejections(f: (Seq[Rejection]) ⇒ RouteResult): Directive0
    Definition Classes
    BasicDirectives
  280. def recoverRejectionsWith(f: (Seq[Rejection]) ⇒ Future[RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  281. def redirect(uri: Uri, redirectionType: Redirection): StandardRoute
    Definition Classes
    RouteDirectives
  282. def redirectToNoTrailingSlashIfPresent(redirectionType: Redirection): Directive0
    Definition Classes
    PathDirectives
  283. def redirectToTrailingSlashIfMissing(redirectionType: Redirection): Directive0
    Definition Classes
    PathDirectives
  284. def reject(rejections: Rejection*): StandardRoute
    Definition Classes
    RouteDirectives
  285. def reject: StandardRoute
    Definition Classes
    RouteDirectives
  286. def rejectEmptyResponse: Directive0
    Definition Classes
    MiscDirectives
  287. def requestEncodedWith(encoding: HttpEncoding): Directive0
    Definition Classes
    CodingDirectives
  288. def requestEntityEmpty: Directive0
    Definition Classes
    MiscDirectives
  289. def requestEntityPresent: Directive0
    Definition Classes
    MiscDirectives
  290. def respondWithDefaultHeader(responseHeader: HttpHeader): Directive0
    Definition Classes
    RespondWithDirectives
  291. def respondWithDefaultHeaders(responseHeaders: HttpHeader*): Directive0
    Definition Classes
    RespondWithDirectives
  292. def respondWithDefaultHeaders(responseHeaders: Seq[HttpHeader]): Directive0
    Definition Classes
    RespondWithDirectives
  293. def respondWithHeader(responseHeader: HttpHeader): Directive0
    Definition Classes
    RespondWithDirectives
  294. def respondWithHeaders(responseHeaders: HttpHeader*): Directive0
    Definition Classes
    RespondWithDirectives
  295. def respondWithHeaders(responseHeaders: Seq[HttpHeader]): Directive0
    Definition Classes
    RespondWithDirectives
  296. def responseEncodingAccepted(encoding: HttpEncoding): Directive0
    Definition Classes
    CodingDirectives
  297. final lazy val routeWithPathPrefix: Route
  298. implicit final val safeJsonUnmarshaller: FromEntityUnmarshaller[Either[ParsingFailure, Json]]
    Definition Classes
    BaseCirceSupport
  299. implicit final def safeUnmarshaller[A](implicit arg0: Decoder[A]): FromEntityUnmarshaller[Either[Error, A]]
    Definition Classes
    FailFastUnmarshaller
  300. def scheme(name: String): Directive0
    Definition Classes
    SchemeDirectives
  301. def selectPreferredLanguage(first: Language, more: Language*): Directive1[Language]
    Definition Classes
    MiscDirectives
  302. def separateOnSlashes(string: String): PathMatcher0
    Definition Classes
    PathMatchers
  303. def setCookie(first: HttpCookie, more: HttpCookie*): Directive0
    Definition Classes
    CookieDirectives
  304. implicit def sourceMarshaller[A](implicit writes: Encoder[A], printer: Printer, support: JsonEntityStreamingSupport): ToEntityMarshaller[SourceOf[A]]
    Definition Classes
    BaseCirceSupport
  305. implicit def sourceUnmarshaller[A](implicit arg0: Decoder[A], support: JsonEntityStreamingSupport): FromEntityUnmarshaller[SourceOf[A]]
    Definition Classes
    BaseCirceSupport
  306. def storeUploadedFile(fieldName: String, destFn: (FileInfo) ⇒ File): Directive[(FileInfo, File)]
    Definition Classes
    FileUploadDirectives
    Annotations
    @ApiMayChange()
  307. def storeUploadedFiles(fieldName: String, destFn: (FileInfo) ⇒ File): Directive1[Seq[(FileInfo, File)]]
    Definition Classes
    FileUploadDirectives
    Annotations
    @ApiMayChange()
  308. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  309. def textract[L](f: (RequestContext) ⇒ L)(implicit arg0: Tuple[L]): Directive[L]
    Definition Classes
    BasicDirectives
  310. def toStrictEntity(timeout: FiniteDuration, maxBytes: Long): Directive0
    Definition Classes
    BasicDirectives
  311. def toStrictEntity(timeout: FiniteDuration): Directive0
    Definition Classes
    BasicDirectives
  312. def toString(): String
    Definition Classes
    AnyRef → Any
  313. def tprovide[L](values: L)(implicit arg0: Tuple[L]): Directive[L]
    Definition Classes
    BasicDirectives
  314. implicit final def unmarshaller[A](implicit arg0: Decoder[A]): FromEntityUnmarshaller[A]
    Definition Classes
    FailFastUnmarshaller
  315. def unmarshallerContentTypes: Seq[ContentTypeRange]
    Definition Classes
    BaseCirceSupport
  316. def validate(check: ⇒ Boolean, errorMsg: String): Directive0
    Definition Classes
    MiscDirectives
  317. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  318. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  319. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  320. def withExecutionContext(ec: ExecutionContextExecutor): Directive0
    Definition Classes
    BasicDirectives
  321. def withLog(log: LoggingAdapter): Directive0
    Definition Classes
    BasicDirectives
  322. def withMaterializer(materializer: Materializer): Directive0
    Definition Classes
    BasicDirectives
  323. def withPrecompressedMediaTypeSupport: Directive0
    Definition Classes
    CodingDirectives
  324. def withRangeSupport: Directive0
    Definition Classes
    RangeDirectives
  325. def withRequestTimeout(timeout: Duration, handler: Option[(HttpRequest) ⇒ HttpResponse]): Directive0
    Definition Classes
    TimeoutDirectives
  326. def withRequestTimeout(timeout: Duration, handler: (HttpRequest) ⇒ HttpResponse): Directive0
    Definition Classes
    TimeoutDirectives
  327. def withRequestTimeout(timeout: Duration): Directive0
    Definition Classes
    TimeoutDirectives
  328. def withRequestTimeoutResponse(handler: (HttpRequest) ⇒ HttpResponse): Directive0
    Definition Classes
    TimeoutDirectives
  329. def withSettings(settings: RoutingSettings): Directive0
    Definition Classes
    BasicDirectives
  330. def withSizeLimit(maxBytes: Long): Directive0
    Definition Classes
    MiscDirectives
  331. def withoutRequestTimeout: Directive0
    Definition Classes
    TimeoutDirectives
  332. def withoutSizeLimit: Directive0
    Definition Classes
    MiscDirectives

Deprecated Value Members

  1. def extractUpgradeToWebSocket: Directive1[UpgradeToWebSocket]
    Definition Classes
    WebSocketDirectives
    Annotations
    @deprecated
    Deprecated

    (Since version 10.2.0) use extractWebSocketUpgrade instead

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

    (Since version ) see corresponding Javadoc for more information.

  3. def headerValueByName(headerName: Symbol): Directive1[String]
    Definition Classes
    HeaderDirectives
    Annotations
    @deprecated
    Deprecated

    (Since version 10.2.0) Use string argument version or headerValueByType, e.g. instead of headerValueByName('Referer) use headerValueByType(Referer)

  4. def optionalHeaderValueByName(headerName: Symbol): Directive1[Option[String]]
    Definition Classes
    HeaderDirectives
    Annotations
    @deprecated
    Deprecated

    (Since version 10.2.0) Use string argument version or headerValueByType, e.g. instead of optionalHeaderValueByName('Referer) use optionalHeaderValueByType(Referer)

Inherited from FailFastCirceSupport

Inherited from FailFastUnmarshaller

Inherited from BaseCirceSupport

Inherited from Directives

Inherited from AttributeDirectives

Inherited from FramedEntityStreamingDirectives

Inherited from WebSocketDirectives

Inherited from SecurityDirectives

Inherited from SchemeDirectives

Inherited from RouteDirectives

Inherited from RespondWithDirectives

Inherited from RangeDirectives

Inherited from PathDirectives

Inherited from ImplicitPathMatcherConstruction

Inherited from PathMatchers

Inherited from TimeoutDirectives

Inherited from ParameterDirectives

Inherited from ParameterDirectivesInstances

Inherited from MiscDirectives

Inherited from MethodDirectives

Inherited from MarshallingDirectives

Inherited from HostDirectives

Inherited from HeaderDirectives

Inherited from FutureDirectives

Inherited from FormFieldDirectives

Inherited from ToNameReceptacleEnhancements

Inherited from FormFieldDirectivesInstances

Inherited from FileUploadDirectives

Inherited from FileAndResourceDirectives

Inherited from ExecutionDirectives

Inherited from CodingDirectives

Inherited from DebuggingDirectives

Inherited from CookieDirectives

Inherited from CacheConditionDirectives

Inherited from BasicDirectives

Inherited from RouteConcatenation

Inherited from AnyRef

Inherited from Any

Ungrouped