redfish_codegen/models/component_integrity/v1_2_1/
secure_session_type.rs1#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
5pub enum SecureSessionType {
6 Plain,
8 EncryptedAuthenticated,
10 AuthenticatedOnly,
12}
13
14#[allow(clippy::derivable_impls)]
15impl Default for SecureSessionType {
16 fn default() -> SecureSessionType {
17 SecureSessionType::Plain
18 }
19}
20
21impl crate::Metadata<'static> for SecureSessionType {
22 const JSON_SCHEMA: &'static str = "ComponentIntegrity.v1_2_1.json";
23}