redfish_codegen/models/manager_network_protocol/v1_9_1/notify_ipv6_scope.rs
1// Generated by redfish-codegen. Do not modify.
2
3
4#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
5pub enum NotifyIPv6Scope {
6 /// SSDP NOTIFY messages are sent to addresses in the IPv6 local link scope.
7 Link,
8 /// SSDP NOTIFY messages are sent to addresses in the IPv6 local site scope.
9 Site,
10 /// SSDP NOTIFY messages are sent to addresses in the IPv6 local organization scope.
11 Organization,
12}
13
14#[allow(clippy::derivable_impls)]
15impl Default for NotifyIPv6Scope {
16 fn default() -> NotifyIPv6Scope {
17 NotifyIPv6Scope::Link
18 }
19}
20
21impl crate::Metadata<'static> for NotifyIPv6Scope {
22 const JSON_SCHEMA: &'static str = "ManagerNetworkProtocol.v1_9_1.json";
23}