pub struct DecodeAuthorizationMessageResponse {
pub decoded_message: Option<String>,
}Expand description
A document that contains additional information about the authorization status of a request from an encoded message that is returned in response to an AWS request.
Fields§
§decoded_message: Option<String>An XML document that contains the decoded message.
Trait Implementations§
Source§impl Clone for DecodeAuthorizationMessageResponse
impl Clone for DecodeAuthorizationMessageResponse
Source§fn clone(&self) -> DecodeAuthorizationMessageResponse
fn clone(&self) -> DecodeAuthorizationMessageResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DecodeAuthorizationMessageResponse
impl Default for DecodeAuthorizationMessageResponse
Source§fn default() -> DecodeAuthorizationMessageResponse
fn default() -> DecodeAuthorizationMessageResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for DecodeAuthorizationMessageResponse
impl PartialEq for DecodeAuthorizationMessageResponse
Source§fn eq(&self, other: &DecodeAuthorizationMessageResponse) -> bool
fn eq(&self, other: &DecodeAuthorizationMessageResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecodeAuthorizationMessageResponse
Auto Trait Implementations§
impl Freeze for DecodeAuthorizationMessageResponse
impl RefUnwindSafe for DecodeAuthorizationMessageResponse
impl Send for DecodeAuthorizationMessageResponse
impl Sync for DecodeAuthorizationMessageResponse
impl Unpin for DecodeAuthorizationMessageResponse
impl UnwindSafe for DecodeAuthorizationMessageResponse
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