Files
aead
aes
aes_gcm
aes_soft
aho_corasick
atty
base64
bitflags
block_buffer
byteorder
cfg_if
chrono
cipher
cookie
cpufeatures
cpuid_bool
crypto_mac
ctr
devise
devise_codegen
devise_core
diesel
associations
connection
expression
expression_methods
macros
migration
pg
query_builder
query_dsl
query_source
sql_types
type_impls
types
diesel_derives
digest
dotenv
filetime
generic_array
getrandom
ghash
glob
hashbrown
hkdf
hmac
httparse
hyper
idna
indexmap
inotify
inotify_sys
instant
iovec
itoa
language_tags
lazy_static
lazycell
libc
limiting_factor
lock_api
log
matches
memchr
mime
mio
mio_extras
net2
notify
num_cpus
num_integer
num_traits
opaque_debug
parking_lot
parking_lot_core
pear
pear_codegen
percent_encoding
polyval
ppv_lite86
pq_sys
r2d2
rand
rand_chacha
rand_core
regex
regex_syntax
rocket
rocket_codegen
rocket_contrib
rocket_http
ryu
same_file
scheduled_thread_pool
scopeguard
serde
serde_json
sha2
slab
smallvec
state
subtle
thread_local
time
tinyvec
tinyvec_macros
toml
traitobject
typeable
typenum
ucd_util
unicase
unicode_bidi
unicode_normalization
unicode_xid
universal_hash
url
utf8_ranges
walkdir
yansi
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use method::Method;

header! {
    /// `Access-Control-Request-Method` header, part of
    /// [CORS](http://www.w3.org/TR/cors/#access-control-request-method-request-header)
    /// 
    /// The `Access-Control-Request-Method` header indicates which method will be
    /// used in the actual request as part of the preflight request.
    /// # ABNF
    /// ```plain
    /// Access-Control-Request-Method: \"Access-Control-Request-Method\" \":\" Method
    /// ```
    /// 
    /// # Example values
    /// * `GET`
    /// 
    /// # Examples
    /// ```
    /// use hyper::header::{Headers, AccessControlRequestMethod};
    /// use hyper::method::Method;
    /// 
    /// let mut headers = Headers::new();
    /// headers.set(AccessControlRequestMethod(Method::Get));
    /// ```
    (AccessControlRequestMethod, "Access-Control-Request-Method") => [Method]

    test_access_control_request_method {
        test_header!(test1, vec![b"GET"]);
    }
}