#[non_exhaustive]pub struct GetReservedNodeExchangeConfigurationOptionsOutput {
pub marker: Option<String>,
pub reserved_node_configuration_option_list: Option<Vec<ReservedNodeConfigurationOption>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.marker: Option<String>
A pagination token provided by a previous GetReservedNodeExchangeConfigurationOptions
request.
reserved_node_configuration_option_list: Option<Vec<ReservedNodeConfigurationOption>>
the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.
Implementations
sourceimpl GetReservedNodeExchangeConfigurationOptionsOutput
impl GetReservedNodeExchangeConfigurationOptionsOutput
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
A pagination token provided by a previous GetReservedNodeExchangeConfigurationOptions
request.
sourcepub fn reserved_node_configuration_option_list(
&self
) -> Option<&[ReservedNodeConfigurationOption]>
pub fn reserved_node_configuration_option_list(
&self
) -> Option<&[ReservedNodeConfigurationOption]>
the configuration options for the reserved-node exchange. These options include information about the source reserved node and target reserved node. Details include the node type, the price, the node count, and the offering type.
sourceimpl GetReservedNodeExchangeConfigurationOptionsOutput
impl GetReservedNodeExchangeConfigurationOptionsOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetReservedNodeExchangeConfigurationOptionsOutput
Trait Implementations
sourceimpl Clone for GetReservedNodeExchangeConfigurationOptionsOutput
impl Clone for GetReservedNodeExchangeConfigurationOptionsOutput
sourcefn clone(&self) -> GetReservedNodeExchangeConfigurationOptionsOutput
fn clone(&self) -> GetReservedNodeExchangeConfigurationOptionsOutput
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 PartialEq<GetReservedNodeExchangeConfigurationOptionsOutput> for GetReservedNodeExchangeConfigurationOptionsOutput
impl PartialEq<GetReservedNodeExchangeConfigurationOptionsOutput> for GetReservedNodeExchangeConfigurationOptionsOutput
sourcefn eq(&self, other: &GetReservedNodeExchangeConfigurationOptionsOutput) -> bool
fn eq(&self, other: &GetReservedNodeExchangeConfigurationOptionsOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetReservedNodeExchangeConfigurationOptionsOutput) -> bool
fn ne(&self, other: &GetReservedNodeExchangeConfigurationOptionsOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetReservedNodeExchangeConfigurationOptionsOutput
Auto Trait Implementations
impl RefUnwindSafe for GetReservedNodeExchangeConfigurationOptionsOutput
impl Send for GetReservedNodeExchangeConfigurationOptionsOutput
impl Sync for GetReservedNodeExchangeConfigurationOptionsOutput
impl Unpin for GetReservedNodeExchangeConfigurationOptionsOutput
impl UnwindSafe for GetReservedNodeExchangeConfigurationOptionsOutput
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
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