pub type PathMatchType = String;
Expand description

PathMatchType specifies the semantics of how HTTP paths should be compared. Valid PathMatchType values are:

  • “Exact”
  • “PathPrefix”
  • “RegularExpression”

PathPrefix and Exact paths must be syntactically valid:

  • Must begin with the / character
  • Must not contain consecutive / characters (e.g. /foo///, //).