pub enum Receivers {
Broadcast,
Nodes(Vec<Box<str>>),
None,
}Expand description
Receiver specification for a signal.
Defines which nodes on the CAN bus should receive and process this signal.
Variants§
Broadcast
Signal is broadcast to all nodes.
Nodes(Vec<Box<str>>)
Signal is sent to specific nodes.
None
Signal has no receivers specified.
Trait Implementations§
impl StructuralPartialEq for Receivers
Auto Trait Implementations§
impl Freeze for Receivers
impl RefUnwindSafe for Receivers
impl Send for Receivers
impl Sync for Receivers
impl Unpin for Receivers
impl UnwindSafe for Receivers
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