#[non_exhaustive]pub struct DeleteRequest<P2 = Value>where
P2: DeserializeOwned + Serialize,{
pub service_token: Option<String>,
pub request_id: String,
pub response_url: String,
pub stack_id: String,
pub resource_type: String,
pub logical_resource_id: String,
pub physical_resource_id: String,
pub resource_properties: P2,
pub other: Map<String, Value>,
}Available on crate feature
cloudformation only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.service_token: Option<String>§request_id: String§response_url: String§stack_id: String§resource_type: String§logical_resource_id: String§physical_resource_id: String§resource_properties: P2§other: Map<String, Value>Available on crate feature
catch-all-fields only.Catchall to catch any additional fields that were present but not explicitly defined by this struct.
Enabled with Cargo feature catch-all-fields.
If catch-all-fields is disabled, any additional fields that are present will be ignored.
Implementations§
Source§impl<P2> DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<P2> DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
Sourcepub fn builder() -> DeleteRequestBuilder<P2>
pub fn builder() -> DeleteRequestBuilder<P2>
Create an instance of DeleteRequest using the builder syntax
Trait Implementations§
Source§impl<P2> Clone for DeleteRequest<P2>
impl<P2> Clone for DeleteRequest<P2>
Source§fn clone(&self) -> DeleteRequest<P2>
fn clone(&self) -> DeleteRequest<P2>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<P2> Debug for DeleteRequest<P2>
impl<P2> Debug for DeleteRequest<P2>
Source§impl<P2> Default for DeleteRequest<P2>
impl<P2> Default for DeleteRequest<P2>
Source§fn default() -> DeleteRequest<P2>
fn default() -> DeleteRequest<P2>
Returns the “default value” for a type. Read more
Source§impl<'de, P2> Deserialize<'de> for DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<'de, P2> Deserialize<'de> for DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
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<P2> PartialEq for DeleteRequest<P2>
impl<P2> PartialEq for DeleteRequest<P2>
Source§fn eq(&self, other: &DeleteRequest<P2>) -> bool
fn eq(&self, other: &DeleteRequest<P2>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<P2> Serialize for DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<P2> Serialize for DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<P2> StructuralPartialEq for DeleteRequest<P2>where
P2: DeserializeOwned + Serialize,
Auto Trait Implementations§
impl<P2> Freeze for DeleteRequest<P2>where
P2: Freeze,
impl<P2> RefUnwindSafe for DeleteRequest<P2>where
P2: RefUnwindSafe,
impl<P2> Send for DeleteRequest<P2>where
P2: Send,
impl<P2> Sync for DeleteRequest<P2>where
P2: Sync,
impl<P2> Unpin for DeleteRequest<P2>where
P2: Unpin,
impl<P2> UnsafeUnpin for DeleteRequest<P2>where
P2: UnsafeUnpin,
impl<P2> UnwindSafe for DeleteRequest<P2>where
P2: UnwindSafe,
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