IntoHeaderMap

Trait IntoHeaderMap 

Source
pub trait IntoHeaderMap: Sized + Serialize {
    // Provided method
    fn into_header_map(self) -> Result<HeaderMap, IntoHeaderMapError> { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<A: Sized + Serialize, B: Sized + Serialize> IntoHeaderMap for HashMap<A, B>

Implementors§