Struct aws_sdk_ec2::output::DescribeVolumeAttributeOutput
source · [−]#[non_exhaustive]pub struct DescribeVolumeAttributeOutput {
pub auto_enable_io: Option<AttributeBooleanValue>,
pub product_codes: Option<Vec<ProductCode>>,
pub volume_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.auto_enable_io: Option<AttributeBooleanValue>
The state of autoEnableIO
attribute.
product_codes: Option<Vec<ProductCode>>
A list of product codes.
volume_id: Option<String>
The ID of the volume.
Implementations
sourceimpl DescribeVolumeAttributeOutput
impl DescribeVolumeAttributeOutput
sourcepub fn auto_enable_io(&self) -> Option<&AttributeBooleanValue>
pub fn auto_enable_io(&self) -> Option<&AttributeBooleanValue>
The state of autoEnableIO
attribute.
sourcepub fn product_codes(&self) -> Option<&[ProductCode]>
pub fn product_codes(&self) -> Option<&[ProductCode]>
A list of product codes.
sourceimpl DescribeVolumeAttributeOutput
impl DescribeVolumeAttributeOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeVolumeAttributeOutput
.
Trait Implementations
sourceimpl Clone for DescribeVolumeAttributeOutput
impl Clone for DescribeVolumeAttributeOutput
sourcefn clone(&self) -> DescribeVolumeAttributeOutput
fn clone(&self) -> DescribeVolumeAttributeOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DescribeVolumeAttributeOutput
impl Debug for DescribeVolumeAttributeOutput
sourceimpl PartialEq<DescribeVolumeAttributeOutput> for DescribeVolumeAttributeOutput
impl PartialEq<DescribeVolumeAttributeOutput> for DescribeVolumeAttributeOutput
sourcefn eq(&self, other: &DescribeVolumeAttributeOutput) -> bool
fn eq(&self, other: &DescribeVolumeAttributeOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeVolumeAttributeOutput) -> bool
fn ne(&self, other: &DescribeVolumeAttributeOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeVolumeAttributeOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeVolumeAttributeOutput
impl Send for DescribeVolumeAttributeOutput
impl Sync for DescribeVolumeAttributeOutput
impl Unpin for DescribeVolumeAttributeOutput
impl UnwindSafe for DescribeVolumeAttributeOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more