#[non_exhaustive]pub enum CloudFormationCustomResourceRequest<P1 = Value, P2 = Value>{
Create(CreateRequest<P2>),
Update(UpdateRequest<P1, P2>),
Delete(DeleteRequest<P2>),
}Available on crate feature
cloudformation only.Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl<P1, P2> Clone for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> Clone for CloudFormationCustomResourceRequest<P1, P2>
Source§fn clone(&self) -> CloudFormationCustomResourceRequest<P1, P2>
fn clone(&self) -> CloudFormationCustomResourceRequest<P1, 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<P1, P2> Debug for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> Debug for CloudFormationCustomResourceRequest<P1, P2>
Source§impl<'de, P1, P2> Deserialize<'de> for CloudFormationCustomResourceRequest<P1, P2>
impl<'de, P1, P2> Deserialize<'de> for CloudFormationCustomResourceRequest<P1, P2>
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<P1, P2> PartialEq for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> PartialEq for CloudFormationCustomResourceRequest<P1, P2>
Source§fn eq(&self, other: &CloudFormationCustomResourceRequest<P1, P2>) -> bool
fn eq(&self, other: &CloudFormationCustomResourceRequest<P1, P2>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<P1, P2> Serialize for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> Serialize for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> StructuralPartialEq for CloudFormationCustomResourceRequest<P1, P2>
Auto Trait Implementations§
impl<P1, P2> Freeze for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> RefUnwindSafe for CloudFormationCustomResourceRequest<P1, P2>where
P1: RefUnwindSafe,
P2: RefUnwindSafe,
impl<P1, P2> Send for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> Sync for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> Unpin for CloudFormationCustomResourceRequest<P1, P2>
impl<P1, P2> UnsafeUnpin for CloudFormationCustomResourceRequest<P1, P2>where
P1: UnsafeUnpin,
P2: UnsafeUnpin,
impl<P1, P2> UnwindSafe for CloudFormationCustomResourceRequest<P1, P2>where
P1: UnwindSafe,
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