Packages

final case class Ok(header: HttpHeader, errors: List[ErrorInfo]) extends ParsingResult with Product with Serializable

The parsing run produced a result. If there were parsing errors (which did not prevent the run from completing) they are reported in the given error list.

Source
HttpHeader.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Ok
  2. Serializable
  3. Product
  4. Equals
  5. ParsingResult
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Ok(header: HttpHeader, errors: List[ErrorInfo])

Value Members

  1. val errors: List[ErrorInfo]
    Definition Classes
    OkParsingResult
  2. val header: HttpHeader
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product