Packages

object ParsingResult

Source
HttpHeader.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ParsingResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Error(error: ErrorInfo) extends ParsingResult with Product with Serializable

    The parsing run failed due to a fatal parsing error.

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

    The parsing run produced a result.

    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.