pub struct DescribeHostReservationOfferingsResult {
pub next_token: Option<String>,
pub offering_set: Option<Vec<HostOffering>>,
}Fields§
§next_token: Option<String>The token to use to retrieve the next page of results. This value is null when there are no more results to return.
offering_set: Option<Vec<HostOffering>>Information about the offerings.
Trait Implementations§
Source§impl Clone for DescribeHostReservationOfferingsResult
impl Clone for DescribeHostReservationOfferingsResult
Source§fn clone(&self) -> DescribeHostReservationOfferingsResult
fn clone(&self) -> DescribeHostReservationOfferingsResult
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 DescribeHostReservationOfferingsResult
impl Default for DescribeHostReservationOfferingsResult
Source§fn default() -> DescribeHostReservationOfferingsResult
fn default() -> DescribeHostReservationOfferingsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeHostReservationOfferingsResult
impl PartialEq for DescribeHostReservationOfferingsResult
Source§fn eq(&self, other: &DescribeHostReservationOfferingsResult) -> bool
fn eq(&self, other: &DescribeHostReservationOfferingsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeHostReservationOfferingsResult
Auto Trait Implementations§
impl Freeze for DescribeHostReservationOfferingsResult
impl RefUnwindSafe for DescribeHostReservationOfferingsResult
impl Send for DescribeHostReservationOfferingsResult
impl Sync for DescribeHostReservationOfferingsResult
impl Unpin for DescribeHostReservationOfferingsResult
impl UnwindSafe for DescribeHostReservationOfferingsResult
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