pub struct Filter { /* private fields */ }
Expand description

A generic mask-based filter for extended CAN IDs

A filter will accept a message if (message_id & filter.mask) == (filter.id & filter.mask).

Implementations

Creates a filter

If the mask or ID is too large to fit into 29 bits, it will be silently truncated.

Creates a filter that matches exactly one message ID

If the ID is too larg to fit into 29 bits, it will be silently truncated.

Returns the mask of this filter, which indicates the bits that are checked

Returns the message ID that this filter (partially) matches

Returns true if this filter accepts a message with the provided ID

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.