[][src]Enum stm32f3xx_hal::can::CanFilterData

pub enum CanFilterData {
    IdFilter(CanId),
    MaskFilter(u16, u16),
    ExtendedMaskFilter(u32, u32),
    AcceptAll,
}

A fully specified CAN filter with its associated list of of IDs or mask.

Variants

IdFilter(CanId)

Can Frame Identifier Filter

MaskFilter(u16, u16)

Filter for an identifier with a applied mask

ExtendedMaskFilter(u32, u32)

Filter for an extended identifier with a applied mask

AcceptAll

Do not filter

Trait Implementations

impl Clone for CanFilterData[src]

impl Copy for CanFilterData[src]

impl Debug for CanFilterData[src]

impl Eq for CanFilterData[src]

impl PartialEq<CanFilterData> for CanFilterData[src]

impl StructuralEq for CanFilterData[src]

impl StructuralPartialEq for CanFilterData[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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.