pub trait UntypedHeader<'a>:
Debug
+ Display
+ PartialEq
+ Eq
+ Clone
+ From<String>
+ Into<String>
+ From<&'a str>
+ Into<Header> {
// Required methods
fn new(value: impl Into<String>) -> Self;
fn value(&self) -> &str;
fn replace(&mut self, new_value: impl Into<String>);
}Required Methods§
fn new(value: impl Into<String>) -> Self
fn value(&self) -> &str
fn replace(&mut self, new_value: impl Into<String>)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".