pub struct NodeStatusRequest {
pub name: String,
pub description: Option<String>,
pub ipaddress: String,
pub status: Option<NodeStatus>,
pub sgx_version: String,
}
Fields§
§name: String
Hostname of the compute node.
description: Option<String>
Description of the compute node.
ipaddress: String
IP Address of the compute node.
status: Option<NodeStatus>
§sgx_version: String
Version of the Intel SGX Platform Software running on the compute node
Implementations§
Trait Implementations§
Source§impl Clone for NodeStatusRequest
impl Clone for NodeStatusRequest
Source§fn clone(&self) -> NodeStatusRequest
fn clone(&self) -> NodeStatusRequest
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 NodeStatusRequest
impl Debug for NodeStatusRequest
Source§impl<'de> Deserialize<'de> for NodeStatusRequest
impl<'de> Deserialize<'de> for NodeStatusRequest
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 NodeStatusRequest
impl PartialEq for NodeStatusRequest
Source§impl Serialize for NodeStatusRequest
impl Serialize for NodeStatusRequest
impl StructuralPartialEq for NodeStatusRequest
Auto Trait Implementations§
impl Freeze for NodeStatusRequest
impl RefUnwindSafe for NodeStatusRequest
impl Send for NodeStatusRequest
impl Sync for NodeStatusRequest
impl Unpin for NodeStatusRequest
impl UnwindSafe for NodeStatusRequest
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