pub struct DescribeSpotPriceHistoryResult {
pub next_token: Option<String>,
pub spot_price_history: Option<Vec<SpotPrice>>,
}Expand description
Contains the output of DescribeSpotPriceHistory.
Fields§
§next_token: Option<String>The token required to retrieve the next set of results. This value is null or an empty string when there are no more results to return.
spot_price_history: Option<Vec<SpotPrice>>The historical Spot prices.
Trait Implementations§
Source§impl Clone for DescribeSpotPriceHistoryResult
impl Clone for DescribeSpotPriceHistoryResult
Source§fn clone(&self) -> DescribeSpotPriceHistoryResult
fn clone(&self) -> DescribeSpotPriceHistoryResult
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 DescribeSpotPriceHistoryResult
impl Default for DescribeSpotPriceHistoryResult
Source§fn default() -> DescribeSpotPriceHistoryResult
fn default() -> DescribeSpotPriceHistoryResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeSpotPriceHistoryResult
impl PartialEq for DescribeSpotPriceHistoryResult
Source§fn eq(&self, other: &DescribeSpotPriceHistoryResult) -> bool
fn eq(&self, other: &DescribeSpotPriceHistoryResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeSpotPriceHistoryResult
Auto Trait Implementations§
impl Freeze for DescribeSpotPriceHistoryResult
impl RefUnwindSafe for DescribeSpotPriceHistoryResult
impl Send for DescribeSpotPriceHistoryResult
impl Sync for DescribeSpotPriceHistoryResult
impl Unpin for DescribeSpotPriceHistoryResult
impl UnwindSafe for DescribeSpotPriceHistoryResult
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