Enum easy_http_request::HttpBody[][src]

pub enum HttpBody<BK: Eq + Hash + AsRef<str>, BV: AsRef<str>> {
    Binary((String, Vec<u8>)),
    Text((String, String)),
    FormURLEncoded(HashMap<BK, BV>),
}

Variants

Auto Trait Implementations

impl<BK, BV> Send for HttpBody<BK, BV> where
    BK: Send,
    BV: Send

impl<BK, BV> Sync for HttpBody<BK, BV> where
    BK: Sync,
    BV: Sync