// Copyright 2023 The Servo Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use cookie::Cookie; use headers::ContentType; use http::header::HeaderMap; use hyper::{Method, StatusCode, Uri}; use hyper_serde::{De, Ser, Serde}; use mime::Mime; use serde::{Deserialize, Serialize}; fn is_supported() where for<'de> De: Deserialize<'de>, for<'a> Ser<'a, T>: Serialize, for<'de> Serde: Deserialize<'de> + Serialize, { } #[test] fn supported() { is_supported::(); is_supported::(); is_supported::(); is_supported::(); is_supported::(); is_supported::(); is_supported::(); }