pub struct LambdaGenerationContext {
pub event_type: Option<LambdaEventType>,
pub response_type: String,
pub handler_body: String,
pub imports: Vec<String>,
pub dependencies: Vec<String>,
pub annotations: LambdaAnnotations,
pub function_name: String,
pub module_name: String,
}Fields§
§event_type: Option<LambdaEventType>§response_type: String§handler_body: String§imports: Vec<String>§dependencies: Vec<String>§annotations: LambdaAnnotations§function_name: String§module_name: StringTrait Implementations§
Source§impl Clone for LambdaGenerationContext
impl Clone for LambdaGenerationContext
Source§fn clone(&self) -> LambdaGenerationContext
fn clone(&self) -> LambdaGenerationContext
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 LambdaGenerationContext
impl Debug for LambdaGenerationContext
Source§impl<'de> Deserialize<'de> for LambdaGenerationContext
impl<'de> Deserialize<'de> for LambdaGenerationContext
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 LambdaGenerationContext
impl RefUnwindSafe for LambdaGenerationContext
impl Send for LambdaGenerationContext
impl Sync for LambdaGenerationContext
impl Unpin for LambdaGenerationContext
impl UnwindSafe for LambdaGenerationContext
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