pub struct SSDProtocol {
pub notify_ipv6_scope: Option<NotifyIPv6Scope>,
pub notify_multicast_interval_seconds: Option<i64>,
pub notify_ttl: Option<i64>,
pub port: Option<i64>,
pub protocol_enabled: Option<bool>,
}
Expand description
The settings for a network protocol associated with a manager.
Fields§
§notify_ipv6_scope: Option<NotifyIPv6Scope>
§notify_multicast_interval_seconds: Option<i64>
The time interval, in seconds, between transmissions of the multicast NOTIFY ALIVE message from this service for SSDP.
notify_ttl: Option<i64>
The time-to-live hop count for SSDP multicast NOTIFY messages.
port: Option<i64>
The protocol port.
protocol_enabled: Option<bool>
An indication of whether the protocol is enabled.
Trait Implementations§
Source§impl Clone for SSDProtocol
impl Clone for SSDProtocol
Source§fn clone(&self) -> SSDProtocol
fn clone(&self) -> SSDProtocol
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 SSDProtocol
impl Debug for SSDProtocol
Source§impl Default for SSDProtocol
impl Default for SSDProtocol
Source§impl<'de> Deserialize<'de> for SSDProtocol
impl<'de> Deserialize<'de> for SSDProtocol
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 SSDProtocol
impl Metadata<'static> for SSDProtocol
Source§const JSON_SCHEMA: &'static str = "ManagerNetworkProtocol.v1_9_1.json"
const JSON_SCHEMA: &'static str = "ManagerNetworkProtocol.v1_9_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 SSDProtocol
impl RefUnwindSafe for SSDProtocol
impl Send for SSDProtocol
impl Sync for SSDProtocol
impl Unpin for SSDProtocol
impl UnwindSafe for SSDProtocol
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