pub unsafe trait HMNetworkConfigurationProfileDelegate: NSObjectProtocol {
// Provided method
unsafe fn profileDidUpdateNetworkAccessMode(
&self,
profile: &HMNetworkConfigurationProfile,
)
where Self: Sized + Message { ... }
}Available on crate feature
HMNetworkConfigurationProfile only.Expand description
Provided Methods§
Sourceunsafe fn profileDidUpdateNetworkAccessMode(
&self,
profile: &HMNetworkConfigurationProfile,
)
Available on crate feature HMAccessoryProfile only.
unsafe fn profileDidUpdateNetworkAccessMode( &self, profile: &HMNetworkConfigurationProfile, )
HMAccessoryProfile only.Informs the delegate that the network access mode has updated.
Parameter profile: Sender of the message.
Trait Implementations§
impl<T> ImplementedBy<T> for dyn HMNetworkConfigurationProfileDelegate
Source§impl ProtocolType for dyn HMNetworkConfigurationProfileDelegate
impl ProtocolType for dyn HMNetworkConfigurationProfileDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".