pub struct NodeConfigurationOptionsMessage {
pub marker: Option<String>,
pub node_configuration_option_list: Option<Vec<NodeConfigurationOption>>,
}
Fields§
§marker: Option<String>
A value that indicates the starting point for the next set of response records in a subsequent request. If a value is returned in a response, you can retrieve the next set of records by providing this returned marker value in the Marker
parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
node_configuration_option_list: Option<Vec<NodeConfigurationOption>>
A list of valid node configurations.
Trait Implementations§
Source§impl Clone for NodeConfigurationOptionsMessage
impl Clone for NodeConfigurationOptionsMessage
Source§fn clone(&self) -> NodeConfigurationOptionsMessage
fn clone(&self) -> NodeConfigurationOptionsMessage
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 NodeConfigurationOptionsMessage
impl Default for NodeConfigurationOptionsMessage
Source§fn default() -> NodeConfigurationOptionsMessage
fn default() -> NodeConfigurationOptionsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for NodeConfigurationOptionsMessage
impl PartialEq for NodeConfigurationOptionsMessage
Source§fn eq(&self, other: &NodeConfigurationOptionsMessage) -> bool
fn eq(&self, other: &NodeConfigurationOptionsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NodeConfigurationOptionsMessage
Auto Trait Implementations§
impl Freeze for NodeConfigurationOptionsMessage
impl RefUnwindSafe for NodeConfigurationOptionsMessage
impl Send for NodeConfigurationOptionsMessage
impl Sync for NodeConfigurationOptionsMessage
impl Unpin for NodeConfigurationOptionsMessage
impl UnwindSafe for NodeConfigurationOptionsMessage
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