Trait doapi::request::BaseRequest [] [src]

pub trait BaseRequest {
    fn url(&self) -> &str;
    fn auth(&self) -> &str;
    fn method(&self) -> Method;
    fn body(&self) -> Option<String>;
}

Required Methods

fn url(&self) -> &str

fn auth(&self) -> &str

fn method(&self) -> Method

fn body(&self) -> Option<String>

Implementors