#[repr(C)]pub enum PduFilter {
Pass = 1,
Block = 2,
PassUUDT = 17,
BlockUUDT = 18,
}
Expand description
Filter type
Variants§
Pass = 1
Matched messages go into the receive queue
Block = 2
Matched messages stay out of the receive queue
PassUUDT = 17
Matches messages go into the receive queue that are UUDT only (For ISO1765)
BlockUUDT = 18
Matches messages stay out of the receive queue that are UUDT only (For ISO1765)
Trait Implementations§
Source§impl Ord for PduFilter
impl Ord for PduFilter
Source§impl PartialOrd for PduFilter
impl PartialOrd for PduFilter
impl Copy for PduFilter
impl Eq for PduFilter
impl StructuralPartialEq for PduFilter
Auto Trait Implementations§
impl Freeze for PduFilter
impl RefUnwindSafe for PduFilter
impl Send for PduFilter
impl Sync for PduFilter
impl Unpin for PduFilter
impl UnwindSafe for PduFilter
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