Function httptest::matchers::any[][src]

pub fn any() -> Any
Expand description

Always true.

Example

use httptest::matchers::*;

// A request matcher that matches a query parameter `foobar` with any value.
request::query(url_decoded(contains(("foobar", any()))));