pub struct ArtifactDetail {
pub name: Option<String>,
pub s_3location: Option<S3Location>,
}
Expand description
Artifact details for the action execution, such as the artifact location.
Fields§
§name: Option<String>
The artifact object name for the action execution.
s_3location: Option<S3Location>
The Amazon S3 artifact location for the action execution.
Trait Implementations§
Source§impl Clone for ArtifactDetail
impl Clone for ArtifactDetail
Source§fn clone(&self) -> ArtifactDetail
fn clone(&self) -> ArtifactDetail
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 ArtifactDetail
impl Debug for ArtifactDetail
Source§impl Default for ArtifactDetail
impl Default for ArtifactDetail
Source§fn default() -> ArtifactDetail
fn default() -> ArtifactDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArtifactDetail
impl<'de> Deserialize<'de> for ArtifactDetail
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 ArtifactDetail
impl PartialEq for ArtifactDetail
impl StructuralPartialEq for ArtifactDetail
Auto Trait Implementations§
impl Freeze for ArtifactDetail
impl RefUnwindSafe for ArtifactDetail
impl Send for ArtifactDetail
impl Sync for ArtifactDetail
impl Unpin for ArtifactDetail
impl UnwindSafe for ArtifactDetail
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