Trait hyper::header::Scheme

source ·
pub trait Scheme: FromStr + Debug + Clone + Send + Sync {
    fn scheme() -> Option<&'static str>;
    fn fmt_scheme(&self, _: &mut Formatter<'_>) -> Result;
}
Expand description

An Authorization scheme to be used in the header.

Required Methods§

An optional Scheme name.

Will be replaced with an associated constant once available.

Format the Scheme data into a header value.

Implementations on Foreign Types§

Implementors§