pub struct BaseResponse {
pub httpStatus: i32,
pub httpHeaders: HashMap<String, Vec<String>>,
pub httpContentString: String,
pub httpContentBytes: Vec<u8>,
/* private fields */
}Fields§
§httpStatus: i32§httpHeaders: HashMap<String, Vec<String>>§httpContentString: String§httpContentBytes: Vec<u8>Implementations§
Source§impl BaseResponse
impl BaseResponse
pub fn parseFromHttpResponse( &mut self, httpResponse: &Response, ) -> AliyunResult<()>
Trait Implementations§
Source§impl Debug for BaseResponse
impl Debug for BaseResponse
Source§impl Default for BaseResponse
impl Default for BaseResponse
Source§fn default() -> BaseResponse
fn default() -> BaseResponse
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for BaseResponse
impl RefUnwindSafe for BaseResponse
impl Send for BaseResponse
impl Sync for BaseResponse
impl Unpin for BaseResponse
impl UnwindSafe for BaseResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more