pub struct AwsLambdaFunctionLayer {
pub arn: Option<String>,
pub code_size: Option<i64>,
}
Expand description
An AWS Lambda layer.
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the function layer.
code_size: Option<i64>
The size of the layer archive in bytes.
Trait Implementations§
Source§impl Clone for AwsLambdaFunctionLayer
impl Clone for AwsLambdaFunctionLayer
Source§fn clone(&self) -> AwsLambdaFunctionLayer
fn clone(&self) -> AwsLambdaFunctionLayer
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 AwsLambdaFunctionLayer
impl Debug for AwsLambdaFunctionLayer
Source§impl Default for AwsLambdaFunctionLayer
impl Default for AwsLambdaFunctionLayer
Source§fn default() -> AwsLambdaFunctionLayer
fn default() -> AwsLambdaFunctionLayer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsLambdaFunctionLayer
impl<'de> Deserialize<'de> for AwsLambdaFunctionLayer
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 PartialEq for AwsLambdaFunctionLayer
impl PartialEq for AwsLambdaFunctionLayer
Source§impl Serialize for AwsLambdaFunctionLayer
impl Serialize for AwsLambdaFunctionLayer
impl StructuralPartialEq for AwsLambdaFunctionLayer
Auto Trait Implementations§
impl Freeze for AwsLambdaFunctionLayer
impl RefUnwindSafe for AwsLambdaFunctionLayer
impl Send for AwsLambdaFunctionLayer
impl Sync for AwsLambdaFunctionLayer
impl Unpin for AwsLambdaFunctionLayer
impl UnwindSafe for AwsLambdaFunctionLayer
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