pub struct DescribeSnapshotAttributeResult {
pub create_volume_permissions: Option<Vec<CreateVolumePermission>>,
pub product_codes: Option<Vec<ProductCode>>,
pub snapshot_id: Option<String>,
}Fields§
§create_volume_permissions: Option<Vec<CreateVolumePermission>>The users and groups that have the permissions for creating volumes from the snapshot.
product_codes: Option<Vec<ProductCode>>The product codes.
snapshot_id: Option<String>The ID of the EBS snapshot.
Trait Implementations§
Source§impl Clone for DescribeSnapshotAttributeResult
impl Clone for DescribeSnapshotAttributeResult
Source§fn clone(&self) -> DescribeSnapshotAttributeResult
fn clone(&self) -> DescribeSnapshotAttributeResult
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 Default for DescribeSnapshotAttributeResult
impl Default for DescribeSnapshotAttributeResult
Source§fn default() -> DescribeSnapshotAttributeResult
fn default() -> DescribeSnapshotAttributeResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeSnapshotAttributeResult
impl PartialEq for DescribeSnapshotAttributeResult
Source§fn eq(&self, other: &DescribeSnapshotAttributeResult) -> bool
fn eq(&self, other: &DescribeSnapshotAttributeResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeSnapshotAttributeResult
Auto Trait Implementations§
impl Freeze for DescribeSnapshotAttributeResult
impl RefUnwindSafe for DescribeSnapshotAttributeResult
impl Send for DescribeSnapshotAttributeResult
impl Sync for DescribeSnapshotAttributeResult
impl Unpin for DescribeSnapshotAttributeResult
impl UnwindSafe for DescribeSnapshotAttributeResult
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