Crate rocket_accept_language
source ·Expand description
accept-language
Request Guard for Rocket Framework
This crate provides a request guard used for getting accept-language
header.
See examples
.
Re-exports
pub extern crate rocket;
pub extern crate unic_langid;
Macros
- This macro can be used to create a
Language
instance constantly . - This macro can be used to create a
Vec<LanguageIdentifier>
instance quickly by providing multiple<language>[-<region>]
or<language>[_<region>]
strings separated by commas. - This macro can be used to create a
Region
instance constantly .
Structs
- The request guard used for getting
accept-language
header. LanguageIdentifier
is a core struct representing a Unicode Language Identifier.