pub struct ArtifactLocation {
pub s_3_location: Option<S3ArtifactLocation>,
pub type_: Option<String>,
}
Expand description
Represents information about the location of an artifact.
Fields§
§s_3_location: Option<S3ArtifactLocation>
The S3 bucket that contains the artifact.
type_: Option<String>
The type of artifact in the location.
Trait Implementations§
Source§impl Clone for ArtifactLocation
impl Clone for ArtifactLocation
Source§fn clone(&self) -> ArtifactLocation
fn clone(&self) -> ArtifactLocation
Returns a copy 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 ArtifactLocation
impl Debug for ArtifactLocation
Source§impl Default for ArtifactLocation
impl Default for ArtifactLocation
Source§fn default() -> ArtifactLocation
fn default() -> ArtifactLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArtifactLocation
impl<'de> Deserialize<'de> for ArtifactLocation
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 ArtifactLocation
impl PartialEq for ArtifactLocation
impl StructuralPartialEq for ArtifactLocation
Auto Trait Implementations§
impl Freeze for ArtifactLocation
impl RefUnwindSafe for ArtifactLocation
impl Send for ArtifactLocation
impl Sync for ArtifactLocation
impl Unpin for ArtifactLocation
impl UnwindSafe for ArtifactLocation
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