pub struct S3ArtifactLocation {
pub bucket_name: String,
pub object_key: String,
}
Expand description
The location of the S3 bucket that contains a revision.
Fields§
§bucket_name: String
The name of the S3 bucket.
object_key: String
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
Trait Implementations§
Source§impl Clone for S3ArtifactLocation
impl Clone for S3ArtifactLocation
Source§fn clone(&self) -> S3ArtifactLocation
fn clone(&self) -> S3ArtifactLocation
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 S3ArtifactLocation
impl Debug for S3ArtifactLocation
Source§impl Default for S3ArtifactLocation
impl Default for S3ArtifactLocation
Source§fn default() -> S3ArtifactLocation
fn default() -> S3ArtifactLocation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for S3ArtifactLocation
impl<'de> Deserialize<'de> for S3ArtifactLocation
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 S3ArtifactLocation
impl PartialEq for S3ArtifactLocation
impl StructuralPartialEq for S3ArtifactLocation
Auto Trait Implementations§
impl Freeze for S3ArtifactLocation
impl RefUnwindSafe for S3ArtifactLocation
impl Send for S3ArtifactLocation
impl Sync for S3ArtifactLocation
impl Unpin for S3ArtifactLocation
impl UnwindSafe for S3ArtifactLocation
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