pub struct WindowsFirewallNetworkProfile {
pub firewall_enabled: StateManagementSetting,
pub stealth_mode_blocked: bool,
pub incoming_traffic_blocked: bool,
pub unicast_responses_to_multicast_broadcasts_blocked: bool,
pub inbound_notifications_blocked: bool,
pub authorized_application_rules_from_group_policy_merged: bool,
pub global_port_rules_from_group_policy_merged: bool,
pub connection_security_rules_from_group_policy_merged: bool,
pub outbound_connections_blocked: bool,
pub inbound_connections_blocked: bool,
pub secured_packet_exemption_allowed: bool,
pub policy_rules_from_group_policy_merged: bool,
}
Fields§
§firewall_enabled: StateManagementSetting
§stealth_mode_blocked: bool
§incoming_traffic_blocked: bool
§unicast_responses_to_multicast_broadcasts_blocked: bool
§inbound_notifications_blocked: bool
§global_port_rules_from_group_policy_merged: bool
§connection_security_rules_from_group_policy_merged: bool
§outbound_connections_blocked: bool
§inbound_connections_blocked: bool
§secured_packet_exemption_allowed: bool
§policy_rules_from_group_policy_merged: bool
Trait Implementations§
Source§impl Clone for WindowsFirewallNetworkProfile
impl Clone for WindowsFirewallNetworkProfile
Source§fn clone(&self) -> WindowsFirewallNetworkProfile
fn clone(&self) -> WindowsFirewallNetworkProfile
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<'de> Deserialize<'de> for WindowsFirewallNetworkProfile
impl<'de> Deserialize<'de> for WindowsFirewallNetworkProfile
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 WindowsFirewallNetworkProfile
impl PartialEq for WindowsFirewallNetworkProfile
Source§fn eq(&self, other: &WindowsFirewallNetworkProfile) -> bool
fn eq(&self, other: &WindowsFirewallNetworkProfile) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for WindowsFirewallNetworkProfile
impl StructuralPartialEq for WindowsFirewallNetworkProfile
Auto Trait Implementations§
impl Freeze for WindowsFirewallNetworkProfile
impl RefUnwindSafe for WindowsFirewallNetworkProfile
impl Send for WindowsFirewallNetworkProfile
impl Sync for WindowsFirewallNetworkProfile
impl Unpin for WindowsFirewallNetworkProfile
impl UnwindSafe for WindowsFirewallNetworkProfile
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