Struct aws_sdk_ec2::operation::describe_spot_datafeed_subscription::DescribeSpotDatafeedSubscriptionOutput
source · #[non_exhaustive]pub struct DescribeSpotDatafeedSubscriptionOutput {
pub spot_datafeed_subscription: Option<SpotDatafeedSubscription>,
/* private fields */
}
Expand description
Contains the output of DescribeSpotDatafeedSubscription.
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.spot_datafeed_subscription: Option<SpotDatafeedSubscription>
The Spot Instance data feed subscription.
Implementations§
source§impl DescribeSpotDatafeedSubscriptionOutput
impl DescribeSpotDatafeedSubscriptionOutput
sourcepub fn spot_datafeed_subscription(&self) -> Option<&SpotDatafeedSubscription>
pub fn spot_datafeed_subscription(&self) -> Option<&SpotDatafeedSubscription>
The Spot Instance data feed subscription.
source§impl DescribeSpotDatafeedSubscriptionOutput
impl DescribeSpotDatafeedSubscriptionOutput
sourcepub fn builder() -> DescribeSpotDatafeedSubscriptionOutputBuilder
pub fn builder() -> DescribeSpotDatafeedSubscriptionOutputBuilder
Creates a new builder-style object to manufacture DescribeSpotDatafeedSubscriptionOutput
.
Trait Implementations§
source§impl Clone for DescribeSpotDatafeedSubscriptionOutput
impl Clone for DescribeSpotDatafeedSubscriptionOutput
source§fn clone(&self) -> DescribeSpotDatafeedSubscriptionOutput
fn clone(&self) -> DescribeSpotDatafeedSubscriptionOutput
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 PartialEq<DescribeSpotDatafeedSubscriptionOutput> for DescribeSpotDatafeedSubscriptionOutput
impl PartialEq<DescribeSpotDatafeedSubscriptionOutput> for DescribeSpotDatafeedSubscriptionOutput
source§fn eq(&self, other: &DescribeSpotDatafeedSubscriptionOutput) -> bool
fn eq(&self, other: &DescribeSpotDatafeedSubscriptionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeSpotDatafeedSubscriptionOutput
impl RequestId for DescribeSpotDatafeedSubscriptionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeSpotDatafeedSubscriptionOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeSpotDatafeedSubscriptionOutput
impl Send for DescribeSpotDatafeedSubscriptionOutput
impl Sync for DescribeSpotDatafeedSubscriptionOutput
impl Unpin for DescribeSpotDatafeedSubscriptionOutput
impl UnwindSafe for DescribeSpotDatafeedSubscriptionOutput
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