BaseRequestExt

Trait BaseRequestExt 

Source
pub trait BaseRequestExt {
Show 42 methods // Required methods fn base(&self) -> &BaseRequest; fn base_as_mut(&mut self) -> &mut BaseRequest; // Provided methods fn GetQueryParams(&self) -> &HashMap<String, String> { ... } fn GetFormParams(&self) -> &HashMap<String, String> { ... } fn GetHTTPSInsecure(&self) -> bool { ... } fn SetHTTPSInsecure(&mut self, isInsecure: bool) { ... } fn GetContent(&self) -> &[u8] { ... } fn SetContent(&mut self, content: &[u8]) { ... } fn SetVersion(&mut self, version: &str) { ... } fn GetVersion(&self) -> &str { ... } fn GetActionName(&self) -> &str { ... } fn SetActionName(&mut self, actionName: &str) { ... } fn GetUserAgent(&self) -> &HashMap<String, String> { ... } fn AppendUserAgent(&mut self, key: &str, value: &str) { ... } fn addHeaderParam(&mut self, key: &str, value: &str) { ... } fn Hearder_as_mut(&mut self) -> &mut HashMap<String, String> { ... } fn addQueryParam(&mut self, key: &str, value: &str) { ... } fn QueryParams_as_mut(&mut self) -> &mut HashMap<String, String> { ... } fn addFormParam(&mut self, key: &str, value: &str) { ... } fn FormParams_as_mut(&mut self) -> &mut HashMap<String, String> { ... } fn GetAcceptFormat(&self) -> &str { ... } fn GetLocationServiceCode(&self) -> &str { ... } fn SetLocationServiceCode(&mut self, locationServiceCode: &str) { ... } fn GetLocationEndpointType(&self) -> &str { ... } fn SetLocationEndpointType(&mut self, locationEndpointType: &str) { ... } fn GetProduct(&self) -> &str { ... } fn SetProduct(&mut self, product: &str) { ... } fn GetScheme(&self) -> &str { ... } fn SetScheme(&mut self, scheme: &str) { ... } fn GetMethod(&self) -> &str { ... } fn SetMethod(&mut self, method: &str) { ... } fn GetDomain(&self) -> &str { ... } fn SetDomain(&mut self, host: &str) { ... } fn GetPort(&self) -> &str { ... } fn GetRegionId(&self) -> &str { ... } fn GetHeaders(&self) -> &HashMap<String, String> { ... } fn SetContentType(&mut self, contentType: &str) { ... } fn GetContentType(&self) -> Option<&str> { ... } fn GetQueries(&self) -> &str { ... } fn SetQueries(&mut self, queries: &str) { ... } fn SetStringToSign(&mut self, stringToSign: &str) { ... } fn GetStringToSign(&self) -> &str { ... }
}

Required Methods§

Source

fn base(&self) -> &BaseRequest

Source

fn base_as_mut(&mut self) -> &mut BaseRequest

Provided Methods§

Source

fn GetQueryParams(&self) -> &HashMap<String, String>

Source

fn GetFormParams(&self) -> &HashMap<String, String>

Source

fn GetHTTPSInsecure(&self) -> bool

Source

fn SetHTTPSInsecure(&mut self, isInsecure: bool)

Source

fn GetContent(&self) -> &[u8]

Source

fn SetContent(&mut self, content: &[u8])

Source

fn SetVersion(&mut self, version: &str)

Source

fn GetVersion(&self) -> &str

Source

fn GetActionName(&self) -> &str

Source

fn SetActionName(&mut self, actionName: &str)

Source

fn GetUserAgent(&self) -> &HashMap<String, String>

Source

fn AppendUserAgent(&mut self, key: &str, value: &str)

Source

fn addHeaderParam(&mut self, key: &str, value: &str)

Source

fn Hearder_as_mut(&mut self) -> &mut HashMap<String, String>

Source

fn addQueryParam(&mut self, key: &str, value: &str)

Source

fn QueryParams_as_mut(&mut self) -> &mut HashMap<String, String>

Source

fn addFormParam(&mut self, key: &str, value: &str)

Source

fn FormParams_as_mut(&mut self) -> &mut HashMap<String, String>

Source

fn GetAcceptFormat(&self) -> &str

Source

fn GetLocationServiceCode(&self) -> &str

Source

fn SetLocationServiceCode(&mut self, locationServiceCode: &str)

Source

fn GetLocationEndpointType(&self) -> &str

Source

fn SetLocationEndpointType(&mut self, locationEndpointType: &str)

Source

fn GetProduct(&self) -> &str

Source

fn SetProduct(&mut self, product: &str)

Source

fn GetScheme(&self) -> &str

Source

fn SetScheme(&mut self, scheme: &str)

Source

fn GetMethod(&self) -> &str

Source

fn SetMethod(&mut self, method: &str)

Source

fn GetDomain(&self) -> &str

Source

fn SetDomain(&mut self, host: &str)

Source

fn GetPort(&self) -> &str

Source

fn GetRegionId(&self) -> &str

Source

fn GetHeaders(&self) -> &HashMap<String, String>

Source

fn SetContentType(&mut self, contentType: &str)

Source

fn GetContentType(&self) -> Option<&str>

Source

fn GetQueries(&self) -> &str

Source

fn SetQueries(&mut self, queries: &str)

Source

fn SetStringToSign(&mut self, stringToSign: &str)

Source

fn GetStringToSign(&self) -> &str

Implementors§