pub enum ExportSecurity {
IncludeSensitiveData,
HashedDataOnly,
ExcludeSensitiveData,
UnsupportedValue,
}Variants§
IncludeSensitiveData
Export all data regardless of the sensitivity.
The service shall export all requested data regardless of the sensitivity.
HashedDataOnly
Export hashed passwords, but exclude other sensitive data.
The service shall export requested data including hashed passwords, but shall exclude other sensitive data.
ExcludeSensitiveData
Export only non-sensitive data.
The service shall export only non-sensitive data.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for ExportSecurity
impl Clone for ExportSecurity
Source§fn clone(&self) -> ExportSecurity
fn clone(&self) -> ExportSecurity
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 ExportSecurity
impl Debug for ExportSecurity
Source§impl<'de> Deserialize<'de> for ExportSecurity
impl<'de> Deserialize<'de> for ExportSecurity
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 ExportSecurity
impl PartialEq for ExportSecurity
Source§impl Serialize for ExportSecurity
impl Serialize for ExportSecurity
Source§impl ToSnakeCase for ExportSecurity
impl ToSnakeCase for ExportSecurity
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 ExportSecurity
impl Eq for ExportSecurity
impl StructuralPartialEq for ExportSecurity
Auto Trait Implementations§
impl Freeze for ExportSecurity
impl RefUnwindSafe for ExportSecurity
impl Send for ExportSecurity
impl Sync for ExportSecurity
impl Unpin for ExportSecurity
impl UnsafeUnpin for ExportSecurity
impl UnwindSafe for ExportSecurity
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