pub struct CloudFormationCustomResourceResponse {
pub status: CloudFormationCustomResourceResponseStatus,
pub reason: Option<String>,
pub physical_resource_id: String,
pub stack_id: String,
pub request_id: String,
pub logical_resource_id: String,
pub no_echo: bool,
pub data: HashMap<String, String>,
}Fields§
§status: CloudFormationCustomResourceResponseStatus§reason: Option<String>§physical_resource_id: String§stack_id: String§request_id: String§logical_resource_id: String§no_echo: bool§data: HashMap<String, String>Trait Implementations§
Source§impl Clone for CloudFormationCustomResourceResponse
impl Clone for CloudFormationCustomResourceResponse
Source§fn clone(&self) -> CloudFormationCustomResourceResponse
fn clone(&self) -> CloudFormationCustomResourceResponse
Returns a copy 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<'de> Deserialize<'de> for CloudFormationCustomResourceResponse
impl<'de> Deserialize<'de> for CloudFormationCustomResourceResponse
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 PartialEq for CloudFormationCustomResourceResponse
impl PartialEq for CloudFormationCustomResourceResponse
Source§fn eq(&self, other: &CloudFormationCustomResourceResponse) -> bool
fn eq(&self, other: &CloudFormationCustomResourceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CloudFormationCustomResourceResponse
Auto Trait Implementations§
impl Freeze for CloudFormationCustomResourceResponse
impl RefUnwindSafe for CloudFormationCustomResourceResponse
impl Send for CloudFormationCustomResourceResponse
impl Sync for CloudFormationCustomResourceResponse
impl Unpin for CloudFormationCustomResourceResponse
impl UnwindSafe for CloudFormationCustomResourceResponse
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