pub struct NodeSummary {
pub availability_zone: Option<String>,
pub creation_date: Option<f64>,
pub id: Option<String>,
pub instance_type: Option<String>,
pub status: Option<String>,
}Expand description
A summary of configuration properties for a peer node.
Fields§
§availability_zone: Option<String>The Availability Zone in which the node exists.
creation_date: Option<f64>The date and time that the node was created.
id: Option<String>The unique identifier of the node.
instance_type: Option<String>The EC2 instance type for the node.
status: Option<String>The status of the node.
Trait Implementations§
Source§impl Clone for NodeSummary
impl Clone for NodeSummary
Source§fn clone(&self) -> NodeSummary
fn clone(&self) -> NodeSummary
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 Debug for NodeSummary
impl Debug for NodeSummary
Source§impl Default for NodeSummary
impl Default for NodeSummary
Source§fn default() -> NodeSummary
fn default() -> NodeSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeSummary
impl<'de> Deserialize<'de> for NodeSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NodeSummary
impl PartialEq for NodeSummary
impl StructuralPartialEq for NodeSummary
Auto Trait Implementations§
impl Freeze for NodeSummary
impl RefUnwindSafe for NodeSummary
impl Send for NodeSummary
impl Sync for NodeSummary
impl Unpin for NodeSummary
impl UnwindSafe for NodeSummary
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