[][src]Enum esp_idf_bindgen::netif_mac_filter_action

#[repr(u32)]pub enum netif_mac_filter_action {
    NETIF_DEL_MAC_FILTER,
    NETIF_ADD_MAC_FILTER,
}

MAC Filter Actions, these are passed to a netif's igmp_mac_filter or mld_mac_filter callback function.

Variants

NETIF_DEL_MAC_FILTER

Delete a filter entry

NETIF_ADD_MAC_FILTER

Add a filter entry

Trait Implementations

impl Clone for netif_mac_filter_action[src]

impl Copy for netif_mac_filter_action[src]

impl Debug for netif_mac_filter_action[src]

impl Eq for netif_mac_filter_action[src]

impl Hash for netif_mac_filter_action[src]

impl PartialEq<netif_mac_filter_action> for netif_mac_filter_action[src]

impl StructuralEq for netif_mac_filter_action[src]

impl StructuralPartialEq for netif_mac_filter_action[src]

Auto Trait Implementations

impl Send for netif_mac_filter_action

impl Sync for netif_mac_filter_action

impl Unpin for netif_mac_filter_action

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.