#[non_exhaustive]pub struct CreateRequest<P2 = Value>where
P2: DeserializeOwned + Serialize,{
pub common: CommonRequestParams<P2>,
}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.common: CommonRequestParams<P2>Trait Implementations§
Source§impl<P2> Clone for CreateRequest<P2>
impl<P2> Clone for CreateRequest<P2>
Source§fn clone(&self) -> CreateRequest<P2>
fn clone(&self) -> CreateRequest<P2>
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<P2> Debug for CreateRequest<P2>
impl<P2> Debug for CreateRequest<P2>
Source§impl<P2> Default for CreateRequest<P2>
impl<P2> Default for CreateRequest<P2>
Source§fn default() -> CreateRequest<P2>
fn default() -> CreateRequest<P2>
Returns the “default value” for a type. Read more
Source§impl<'de, P2> Deserialize<'de> for CreateRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<'de, P2> Deserialize<'de> for CreateRequest<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 CreateRequest<P2>
impl<P2> PartialEq for CreateRequest<P2>
Source§impl<P2> Serialize for CreateRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<P2> Serialize for CreateRequest<P2>where
P2: DeserializeOwned + Serialize,
impl<P2> StructuralPartialEq for CreateRequest<P2>where
P2: DeserializeOwned + Serialize,
Auto Trait Implementations§
impl<P2> Freeze for CreateRequest<P2>where
P2: Freeze,
impl<P2> RefUnwindSafe for CreateRequest<P2>where
P2: RefUnwindSafe,
impl<P2> Send for CreateRequest<P2>where
P2: Send,
impl<P2> Sync for CreateRequest<P2>where
P2: Sync,
impl<P2> Unpin for CreateRequest<P2>where
P2: Unpin,
impl<P2> UnwindSafe for CreateRequest<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