#[non_exhaustive]pub struct DeployArtifact {
pub artifact_uri: String,
pub manifest_paths: Vec<String>,
/* private fields */
}
Expand description
The artifacts produced by a deploy operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.artifact_uri: String
Output only. URI of a directory containing the artifacts. All paths are relative to this location.
manifest_paths: Vec<String>
Output only. File paths of the manifests applied during the deploy operation relative to the URI.
Implementations§
Source§impl DeployArtifact
impl DeployArtifact
pub fn new() -> Self
Sourcepub fn set_artifact_uri<T: Into<String>>(self, v: T) -> Self
pub fn set_artifact_uri<T: Into<String>>(self, v: T) -> Self
Sets the value of artifact_uri.
Sourcepub fn set_manifest_paths<T, V>(self, v: T) -> Self
pub fn set_manifest_paths<T, V>(self, v: T) -> Self
Sets the value of manifest_paths.
Trait Implementations§
Source§impl Clone for DeployArtifact
impl Clone for DeployArtifact
Source§fn clone(&self) -> DeployArtifact
fn clone(&self) -> DeployArtifact
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 DeployArtifact
impl Debug for DeployArtifact
Source§impl Default for DeployArtifact
impl Default for DeployArtifact
Source§fn default() -> DeployArtifact
fn default() -> DeployArtifact
Returns the “default value” for a type. Read more
Source§impl Message for DeployArtifact
impl Message for DeployArtifact
Source§impl PartialEq for DeployArtifact
impl PartialEq for DeployArtifact
impl StructuralPartialEq for DeployArtifact
Auto Trait Implementations§
impl Freeze for DeployArtifact
impl RefUnwindSafe for DeployArtifact
impl Send for DeployArtifact
impl Sync for DeployArtifact
impl Unpin for DeployArtifact
impl UnwindSafe for DeployArtifact
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