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