Skip to main content

IntoCaseHeaderName

Trait IntoCaseHeaderName 

Source
pub trait IntoCaseHeaderName {
    // Required method
    fn into_case_header_name(self) -> CaseHeaderName;
}
Expand description

A trait that converts into case-sensitive header names.

Required Methods§

Source

fn into_case_header_name(self) -> CaseHeaderName

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoCaseHeaderName for &'static str

Source§

fn into_case_header_name(self) -> CaseHeaderName

Source§

impl IntoCaseHeaderName for &HeaderName

Source§

fn into_case_header_name(self) -> CaseHeaderName

Source§

impl IntoCaseHeaderName for Bytes

Source§

fn into_case_header_name(self) -> CaseHeaderName

Source§

impl IntoCaseHeaderName for HeaderName

Source§

fn into_case_header_name(self) -> CaseHeaderName

Source§

impl IntoCaseHeaderName for String

Source§

fn into_case_header_name(self) -> CaseHeaderName

Implementors§