pub struct LambdaProject {
pub handler_code: String,
pub cargo_toml: String,
pub build_script: String,
pub sam_template: Option<String>,
pub cdk_construct: Option<String>,
pub readme: String,
}Fields§
§handler_code: String§cargo_toml: String§build_script: String§sam_template: Option<String>§cdk_construct: Option<String>§readme: StringTrait Implementations§
Source§impl Clone for LambdaProject
impl Clone for LambdaProject
Source§fn clone(&self) -> LambdaProject
fn clone(&self) -> LambdaProject
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 moreAuto Trait Implementations§
impl Freeze for LambdaProject
impl RefUnwindSafe for LambdaProject
impl Send for LambdaProject
impl Sync for LambdaProject
impl Unpin for LambdaProject
impl UnwindSafe for LambdaProject
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