[][src]Struct fastcgi_client::Params

pub struct Params<'a> {
    pub gateway_interface: &'a str,
    pub request_method: &'a str,
    pub script_filename: &'a str,
    pub script_name: &'a str,
    pub query_string: &'a str,
    pub request_uri: &'a str,
    pub document_uri: &'a str,
    pub server_software: &'a str,
    pub remote_addr: &'a str,
    pub remote_port: &'a str,
    pub server_addr: &'a str,
    pub server_port: &'a str,
    pub server_name: &'a str,
    pub server_protocol: &'a str,
    pub content_type: &'a str,
    pub content_length: &'a str,
}

Fields

gateway_interface: &'a strrequest_method: &'a strscript_filename: &'a strscript_name: &'a strquery_string: &'a strrequest_uri: &'a strdocument_uri: &'a strserver_software: &'a strremote_addr: &'a strremote_port: &'a strserver_addr: &'a strserver_port: &'a strserver_name: &'a strserver_protocol: &'a strcontent_type: &'a strcontent_length: &'a str

Methods

impl<'a> Params<'a>[src]

pub fn with(
    request_method: &'a str,
    script_name: &'a str,
    query_string: &'a str,
    request_uri: &'a str,
    document_uri: &'a str,
    remote_addr: &'a str,
    remote_port: &'a str,
    server_addr: &'a str,
    server_port: &'a str,
    server_name: &'a str,
    content_type: &'a str,
    content_length: &'a str
) -> Self
[src]

Trait Implementations

impl<'a> Into<HashMap<&'a str, &'a str, RandomState>> for Params<'a>[src]

impl<'a> Default for Params<'a>[src]

impl<'a> Debug for Params<'a>[src]

Auto Trait Implementations

impl<'a> Send for Params<'a>

impl<'a> Sync for Params<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]