pub struct LayersListItem {
pub latest_matching_version: Option<LayerVersionsListItem>,
pub layer_arn: Option<String>,
pub layer_name: Option<String>,
}
Expand description
Details about an AWS Lambda layer.
Fields§
§latest_matching_version: Option<LayerVersionsListItem>
The newest version of the layer.
layer_arn: Option<String>
The Amazon Resource Name (ARN) of the function layer.
layer_name: Option<String>
The name of the layer.
Trait Implementations§
Source§impl Clone for LayersListItem
impl Clone for LayersListItem
Source§fn clone(&self) -> LayersListItem
fn clone(&self) -> LayersListItem
Returns a copy 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 LayersListItem
impl Debug for LayersListItem
Source§impl Default for LayersListItem
impl Default for LayersListItem
Source§fn default() -> LayersListItem
fn default() -> LayersListItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LayersListItem
impl<'de> Deserialize<'de> for LayersListItem
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 LayersListItem
impl PartialEq for LayersListItem
impl StructuralPartialEq for LayersListItem
Auto Trait Implementations§
impl Freeze for LayersListItem
impl RefUnwindSafe for LayersListItem
impl Send for LayersListItem
impl Sync for LayersListItem
impl Unpin for LayersListItem
impl UnwindSafe for LayersListItem
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