pub struct TargetContainerRepository {
pub repository_name: String,
pub service: String,
}Expand description
The container repository where the output container image is stored.
Fields§
§repository_name: StringThe name of the container repository where the output container image is stored. This name is prefixed by the repository location.
service: StringSpecifies the service in which this image was registered.
Trait Implementations§
Source§impl Clone for TargetContainerRepository
impl Clone for TargetContainerRepository
Source§fn clone(&self) -> TargetContainerRepository
fn clone(&self) -> TargetContainerRepository
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 TargetContainerRepository
impl Debug for TargetContainerRepository
Source§impl Default for TargetContainerRepository
impl Default for TargetContainerRepository
Source§fn default() -> TargetContainerRepository
fn default() -> TargetContainerRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetContainerRepository
impl<'de> Deserialize<'de> for TargetContainerRepository
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
impl StructuralPartialEq for TargetContainerRepository
Auto Trait Implementations§
impl Freeze for TargetContainerRepository
impl RefUnwindSafe for TargetContainerRepository
impl Send for TargetContainerRepository
impl Sync for TargetContainerRepository
impl Unpin for TargetContainerRepository
impl UnwindSafe for TargetContainerRepository
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