Struct redfish_codegen::models::computer_system::v1_20_0::KMIPServer
source · pub struct KMIPServer {
pub address: Option<String>,
pub cache_duration: Option<String>,
pub cache_policy: Option<KMIPCachePolicy>,
pub password: Option<String>,
pub port: Option<i64>,
pub username: Option<String>,
}
Expand description
The KMIP server settings for a computer system.
Fields§
§address: Option<String>
The KMIP server address.
cache_duration: Option<String>
The duration the system caches KMIP data.
cache_policy: Option<KMIPCachePolicy>
§password: Option<String>
The password to access the KMIP server. The value is null
in responses.
port: Option<i64>
The KMIP server port.
username: Option<String>
The username to access the KMIP server.
Trait Implementations§
source§impl Clone for KMIPServer
impl Clone for KMIPServer
source§fn clone(&self) -> KMIPServer
fn clone(&self) -> KMIPServer
Returns a copy 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 KMIPServer
impl Debug for KMIPServer
source§impl Default for KMIPServer
impl Default for KMIPServer
source§fn default() -> KMIPServer
fn default() -> KMIPServer
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for KMIPServer
impl<'de> Deserialize<'de> for KMIPServer
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