pub struct ImageReplicationStatus {
pub region: String,
pub registry_id: String,
pub status: String,
pub failure_code: Option<String>,
pub failure_reason: Option<String>,
}Expand description
Outcome of replicating one image to one destination registry/region.
Surfaced through DescribeImageReplicationStatus. AWS returns both
failureCode and failureReason; we keep them as Options because
they’re only set when status == "FAILED".
Fields§
§region: String§registry_id: String§status: String§failure_code: Option<String>§failure_reason: Option<String>Trait Implementations§
Source§impl Clone for ImageReplicationStatus
impl Clone for ImageReplicationStatus
Source§fn clone(&self) -> ImageReplicationStatus
fn clone(&self) -> ImageReplicationStatus
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 Debug for ImageReplicationStatus
impl Debug for ImageReplicationStatus
Source§impl<'de> Deserialize<'de> for ImageReplicationStatus
impl<'de> Deserialize<'de> for ImageReplicationStatus
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 ImageReplicationStatus
impl RefUnwindSafe for ImageReplicationStatus
impl Send for ImageReplicationStatus
impl Sync for ImageReplicationStatus
impl Unpin for ImageReplicationStatus
impl UnsafeUnpin for ImageReplicationStatus
impl UnwindSafe for ImageReplicationStatus
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