pub struct EcrRepository {
pub repository_name: String,
pub repository_arn: String,
pub registry_id: String,
pub repository_uri: String,
pub image_tag_mutability: String,
pub scan_on_push: bool,
pub created_at: String,
pub tags: Vec<EcrTag>,
pub has_policy: bool,
pub has_lifecycle_policy: bool,
pub image_count: u64,
pub layer_count: u64,
}Fields§
§repository_name: String§repository_arn: String§registry_id: String§repository_uri: String§image_tag_mutability: String§scan_on_push: bool§created_at: String§has_policy: bool§has_lifecycle_policy: bool§image_count: u64§layer_count: u64Trait Implementations§
Source§impl Clone for EcrRepository
impl Clone for EcrRepository
Source§fn clone(&self) -> EcrRepository
fn clone(&self) -> EcrRepository
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 EcrRepository
impl Debug for EcrRepository
Source§impl<'de> Deserialize<'de> for EcrRepository
impl<'de> Deserialize<'de> for EcrRepository
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 EcrRepository
impl RefUnwindSafe for EcrRepository
impl Send for EcrRepository
impl Sync for EcrRepository
impl Unpin for EcrRepository
impl UnsafeUnpin for EcrRepository
impl UnwindSafe for EcrRepository
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