pub async fn check<T, E>(request: T) -> Result<Response>Expand description
A shorthand function to check a single URI.
This provides the simplest link check utility without having to create a
Client. For more complex scenarios, see documentation of
ClientBuilder instead.
ยงErrors
Returns an Err if:
- The request client cannot be built (see
ClientBuilder::clientfor failure cases). - The request cannot be checked (see
Client::checkfor failure cases).