pub enum InitializationType {
OnDemand,
ProvisionedConcurrency,
SnapStart,
}Expand description
Initialization type.
Variants§
OnDemand
On-demand initialization.
ProvisionedConcurrency
Provisioned concurrency.
SnapStart
SnapStart initialization.
Trait Implementations§
Source§impl Clone for InitializationType
impl Clone for InitializationType
Source§fn clone(&self) -> InitializationType
fn clone(&self) -> InitializationType
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 Debug for InitializationType
impl Debug for InitializationType
Source§impl<'de> Deserialize<'de> for InitializationType
impl<'de> Deserialize<'de> for InitializationType
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
Auto Trait Implementations§
impl Freeze for InitializationType
impl RefUnwindSafe for InitializationType
impl Send for InitializationType
impl Sync for InitializationType
impl Unpin for InitializationType
impl UnwindSafe for InitializationType
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