pub struct NodeStatusRequest {
pub name: String,
pub description: Option<String>,
pub ipaddress: String,
pub status: Option<NodeStatus>,
pub sgx_version: String,
}Fields§
§name: StringHostname of the compute node.
description: Option<String>Description of the compute node.
ipaddress: StringIP Address of the compute node.
status: Option<NodeStatus>§sgx_version: StringVersion 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<NodeStatusRequest, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NodeStatusRequest, <__D as Deserializer<'de>>::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
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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