pub struct BaseResponse {
pub headers: HashMap<String, String>,
pub ret_code: i32,
pub message: Option<String>,
}Expand description
Re-export configuration for s3 credential
Fields§
§headers: HashMap<String, String>§ret_code: i32§message: Option<String>Trait Implementations§
Source§impl Debug for BaseResponse
impl Debug for BaseResponse
Source§impl<'de> Deserialize<'de> for BaseResponse
impl<'de> Deserialize<'de> for BaseResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<BaseResponse> for PutObjectResultResponse
impl From<BaseResponse> for PutObjectResultResponse
Source§fn from(resp: BaseResponse) -> Self
fn from(resp: BaseResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BaseResponse
impl RefUnwindSafe for BaseResponse
impl Send for BaseResponse
impl Sync for BaseResponse
impl Unpin for BaseResponse
impl UnsafeUnpin 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