Struct reqwest::header::Protocol
[−]
[src]
pub struct Protocol { pub name: ProtocolName, pub version: Option<String>, }
Protocols that appear in the Upgrade
header field
Fields
name: ProtocolName
The protocol identifier
version: Option<String>
The optional version of the protocol, often in the format "DIGIT.DIGIT" (e.g.. "1.2")
Methods
impl Protocol
[src]
fn new(name: ProtocolName, version: Option<String>) -> Protocol
Creates a new Protocol with the given name and version
Trait Implementations
impl Eq for Protocol
[src]
impl Debug for Protocol
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.