pub struct LayerVersion {
pub version: i64,
pub layer_version_arn: String,
pub description: String,
pub created_date: DateTime<Utc>,
pub compatible_runtimes: Vec<String>,
pub license_info: String,
pub policy: Option<String>,
}Fields§
§version: i64§layer_version_arn: String§description: String§created_date: DateTime<Utc>§compatible_runtimes: Vec<String>§license_info: String§policy: Option<String>Trait Implementations§
Source§impl Clone for LayerVersion
impl Clone for LayerVersion
Source§fn clone(&self) -> LayerVersion
fn clone(&self) -> LayerVersion
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 LayerVersion
impl Debug for LayerVersion
Source§impl<'de> Deserialize<'de> for LayerVersion
impl<'de> Deserialize<'de> for LayerVersion
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 LayerVersion
impl RefUnwindSafe for LayerVersion
impl Send for LayerVersion
impl Sync for LayerVersion
impl Unpin for LayerVersion
impl UnsafeUnpin for LayerVersion
impl UnwindSafe for LayerVersion
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