pub enum KmipCachePolicy {
None,
AfterFirstUse,
UnsupportedValue,
}Variants§
None
The system does not cache KMIP data.
AfterFirstUse
The system caches KMIP data after first use for the duration specified by the CacheDuration property.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for KmipCachePolicy
impl Clone for KmipCachePolicy
Source§fn clone(&self) -> KmipCachePolicy
fn clone(&self) -> KmipCachePolicy
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 KmipCachePolicy
impl Debug for KmipCachePolicy
Source§impl<'de> Deserialize<'de> for KmipCachePolicy
impl<'de> Deserialize<'de> for KmipCachePolicy
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 KmipCachePolicy
impl PartialEq for KmipCachePolicy
Source§impl Serialize for KmipCachePolicy
impl Serialize for KmipCachePolicy
Source§impl ToSnakeCase for KmipCachePolicy
impl ToSnakeCase for KmipCachePolicy
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for KmipCachePolicy
impl Eq for KmipCachePolicy
impl StructuralPartialEq for KmipCachePolicy
Auto Trait Implementations§
impl Freeze for KmipCachePolicy
impl RefUnwindSafe for KmipCachePolicy
impl Send for KmipCachePolicy
impl Sync for KmipCachePolicy
impl Unpin for KmipCachePolicy
impl UnsafeUnpin for KmipCachePolicy
impl UnwindSafe for KmipCachePolicy
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