pub struct StorageLocation {
pub bucket: Option<String>,
pub key: Option<String>,
}Expand description
Describes a storage location in Amazon S3.
Fields§
§bucket: Option<String>The name of the S3 bucket.
key: Option<String>The key.
Trait Implementations§
Source§impl Clone for StorageLocation
impl Clone for StorageLocation
Source§fn clone(&self) -> StorageLocation
fn clone(&self) -> StorageLocation
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 StorageLocation
impl Debug for StorageLocation
Source§impl Default for StorageLocation
impl Default for StorageLocation
Source§fn default() -> StorageLocation
fn default() -> StorageLocation
Returns the “default value” for a type. Read more
Source§impl PartialEq for StorageLocation
impl PartialEq for StorageLocation
impl StructuralPartialEq for StorageLocation
Auto Trait Implementations§
impl Freeze for StorageLocation
impl RefUnwindSafe for StorageLocation
impl Send for StorageLocation
impl Sync for StorageLocation
impl Unpin for StorageLocation
impl UnwindSafe for StorageLocation
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