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