#[repr(u32)]pub enum NetworkEventType {
ClassifyDrop = 3,
ClassifyAllow = 6,
CapabilityDrop = 7,
Other(u32),
}Expand description
Type of network event
Variants§
ClassifyDrop = 3
Connection was blocked by a filter
ClassifyAllow = 6
Connection was allowed by a filter (Win8+)
CapabilityDrop = 7
App container capability drop (Win8+)
Other(u32)
Other event type
Trait Implementations§
Source§impl Clone for NetworkEventType
impl Clone for NetworkEventType
Source§fn clone(&self) -> NetworkEventType
fn clone(&self) -> NetworkEventType
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 Debug for NetworkEventType
impl Debug for NetworkEventType
Source§impl From<u32> for NetworkEventType
impl From<u32> for NetworkEventType
Source§impl PartialEq for NetworkEventType
impl PartialEq for NetworkEventType
impl Copy for NetworkEventType
impl Eq for NetworkEventType
impl StructuralPartialEq for NetworkEventType
Auto Trait Implementations§
impl Freeze for NetworkEventType
impl RefUnwindSafe for NetworkEventType
impl Send for NetworkEventType
impl Sync for NetworkEventType
impl Unpin for NetworkEventType
impl UnsafeUnpin for NetworkEventType
impl UnwindSafe for NetworkEventType
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