pub struct Node {
Show 16 fields pub name: String, pub description: Option<String>, pub acct_id: Uuid, pub ipaddress: Option<String>, pub node_id: Uuid, pub host_id: Option<String>, pub zone_id: Option<Uuid>, pub status: NodeStatus, pub attested_at: Option<i64>, pub certificate: Option<String>, pub apps: Vec<AppNodeInfo>, pub sgx_info: SgxInfo, pub labels: Option<HashMap<String, String>>, pub platform: Option<String>, pub attestation_type: Option<String>, pub error_report: Option<NodeErrorReport>,
}

Fields

name: String

Name of the compute node.

description: Option<String>

Description of the compute node.

acct_id: Uuid

The account ID of the account that this compute node belongs to.

ipaddress: Option<String>

IP Address of the compute node.

node_id: Uuid

UUID for the compute node.

host_id: Option<String>

No longer used.

zone_id: Option<Uuid>

Zone ID of the zone this compute node belongs to.

status: NodeStatusattested_at: Option<i64>

The compute node attestation date

certificate: Option<String>

The compute node attestation certificate

apps: Vec<AppNodeInfo>

Apps associated with the compute node.

sgx_info: SgxInfolabels: Option<HashMap<String, String>>platform: Option<String>

Platform information of the compute node.

attestation_type: Option<String>

Node Attestation type (DCAP or EPID)

error_report: Option<NodeErrorReport>

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Get the TypeId of this object.