pub trait IntoRangeHeaderValue {
// Required method
fn into_range_header_value(&self) -> String;
}Expand description
Utility trait for converting various Rust Range types into a header value. according to the MDN Web Docs.
See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Range
Required Methods§
fn into_range_header_value(&self) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".