pub enum InvocationType {
RequestResponse,
Event,
DryRun,
}Expand description
AWS Lambda’s InvocationType: synchronous, async (event), or dry-run.
Variants§
Implementations§
Source§impl InvocationType
impl InvocationType
pub fn from_header(value: Option<&str>) -> Self
Trait Implementations§
Source§impl Clone for InvocationType
impl Clone for InvocationType
Source§fn clone(&self) -> InvocationType
fn clone(&self) -> InvocationType
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 Debug for InvocationType
impl Debug for InvocationType
Source§impl PartialEq for InvocationType
impl PartialEq for InvocationType
Source§fn eq(&self, other: &InvocationType) -> bool
fn eq(&self, other: &InvocationType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InvocationType
impl Eq for InvocationType
impl StructuralPartialEq for InvocationType
Auto Trait Implementations§
impl Freeze for InvocationType
impl RefUnwindSafe for InvocationType
impl Send for InvocationType
impl Sync for InvocationType
impl Unpin for InvocationType
impl UnsafeUnpin for InvocationType
impl UnwindSafe for InvocationType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.