pub struct AwsEcrRepositoryHeartbeatData {
pub repository_arn: String,
pub registry_id: String,
pub repository_name: String,
pub repository_uri: String,
pub created_at: f64,
pub image_tag_mutability: Option<String>,
pub scan_on_push: Option<bool>,
pub encryption_type: Option<String>,
pub kms_key_present: bool,
}Fields§
§repository_arn: String§registry_id: String§repository_name: String§repository_uri: String§created_at: f64§image_tag_mutability: Option<String>§scan_on_push: Option<bool>§encryption_type: Option<String>§kms_key_present: boolTrait Implementations§
Source§impl Clone for AwsEcrRepositoryHeartbeatData
impl Clone for AwsEcrRepositoryHeartbeatData
Source§fn clone(&self) -> AwsEcrRepositoryHeartbeatData
fn clone(&self) -> AwsEcrRepositoryHeartbeatData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AwsEcrRepositoryHeartbeatData
impl<'de> Deserialize<'de> for AwsEcrRepositoryHeartbeatData
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 AwsEcrRepositoryHeartbeatData
impl PartialEq for AwsEcrRepositoryHeartbeatData
Source§fn eq(&self, other: &AwsEcrRepositoryHeartbeatData) -> bool
fn eq(&self, other: &AwsEcrRepositoryHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsEcrRepositoryHeartbeatData
Auto Trait Implementations§
impl Freeze for AwsEcrRepositoryHeartbeatData
impl RefUnwindSafe for AwsEcrRepositoryHeartbeatData
impl Send for AwsEcrRepositoryHeartbeatData
impl Sync for AwsEcrRepositoryHeartbeatData
impl Unpin for AwsEcrRepositoryHeartbeatData
impl UnsafeUnpin for AwsEcrRepositoryHeartbeatData
impl UnwindSafe for AwsEcrRepositoryHeartbeatData
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