isahc 1.8.1

The practical HTTP client that is fun to use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
macro_rules! assert_matches {
    ($value:expr, $($pattern:tt)+) => {{
        match $value {
            $($pattern)* => {},
            value => panic!(
                "assertion failed: `{}` matches `{}`\n  value: `{:?}`",
                stringify!($value),
                stringify!($($pattern)*),
                value,
            ),
        }
    }};
}