pub enum Action {
Disable = 0,
StoreInFifo0 = 1,
StoreInFifo1 = 2,
Reject = 3,
FlagHighPrio = 4,
FlagHighPrioAndStoreInFifo0 = 5,
FlagHighPrioAndStoreInFifo1 = 6,
}
Expand description
Filter Action
Variants§
Disable = 0
No Action
StoreInFifo0 = 1
Store an matching message in FIFO 0
StoreInFifo1 = 2
Store an matching message in FIFO 1
Reject = 3
Reject an matching message
FlagHighPrio = 4
Flag a matching message (But not store?!?)
FlagHighPrioAndStoreInFifo0 = 5
Flag a matching message as a High Priority message and store it in FIFO 0
FlagHighPrioAndStoreInFifo1 = 6
Flag a matching message as a High Priority message and store it in FIFO 1
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnwindSafe for Action
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)