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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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§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
Source§impl Metadata<'static> for KMIPServer
impl Metadata<'static> for KMIPServer
Source§const JSON_SCHEMA: &'static str = "ComputerSystem.v1_20_1.json"
const JSON_SCHEMA: &'static str = "ComputerSystem.v1_20_1.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for KMIPServer
impl RefUnwindSafe for KMIPServer
impl Send for KMIPServer
impl Sync for KMIPServer
impl Unpin for KMIPServer
impl UnwindSafe for KMIPServer
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