pub struct AwsEcrArtifactRegistryHeartbeatData {
pub status: ArtifactRegistryHeartbeatStatus,
pub registry_id: String,
pub region: String,
pub registry_uri: String,
pub repository_prefix: String,
pub pull_role_arn: Option<String>,
pub push_role_arn: Option<String>,
pub repository_count: u32,
pub repositories_truncated: bool,
pub repositories: Vec<AwsEcrRepositoryHeartbeatData>,
}Fields§
§status: ArtifactRegistryHeartbeatStatus§registry_id: String§region: String§registry_uri: String§repository_prefix: String§pull_role_arn: Option<String>§push_role_arn: Option<String>§repository_count: u32§repositories_truncated: bool§repositories: Vec<AwsEcrRepositoryHeartbeatData>Trait Implementations§
Source§impl Clone for AwsEcrArtifactRegistryHeartbeatData
impl Clone for AwsEcrArtifactRegistryHeartbeatData
Source§fn clone(&self) -> AwsEcrArtifactRegistryHeartbeatData
fn clone(&self) -> AwsEcrArtifactRegistryHeartbeatData
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 AwsEcrArtifactRegistryHeartbeatData
impl<'de> Deserialize<'de> for AwsEcrArtifactRegistryHeartbeatData
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 AwsEcrArtifactRegistryHeartbeatData
impl PartialEq for AwsEcrArtifactRegistryHeartbeatData
Source§fn eq(&self, other: &AwsEcrArtifactRegistryHeartbeatData) -> bool
fn eq(&self, other: &AwsEcrArtifactRegistryHeartbeatData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsEcrArtifactRegistryHeartbeatData
Auto Trait Implementations§
impl Freeze for AwsEcrArtifactRegistryHeartbeatData
impl RefUnwindSafe for AwsEcrArtifactRegistryHeartbeatData
impl Send for AwsEcrArtifactRegistryHeartbeatData
impl Sync for AwsEcrArtifactRegistryHeartbeatData
impl Unpin for AwsEcrArtifactRegistryHeartbeatData
impl UnsafeUnpin for AwsEcrArtifactRegistryHeartbeatData
impl UnwindSafe for AwsEcrArtifactRegistryHeartbeatData
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