pub enum TransmitDirection {
Send,
Receive,
Any,
}Expand description
The transmission direction.
Variants§
Send
MCU send message to another device.
Receive
MCU receive messages from another device.
Any
Any one of Send or Receive.
Auto Trait Implementations§
impl Freeze for TransmitDirection
impl RefUnwindSafe for TransmitDirection
impl Send for TransmitDirection
impl Sync for TransmitDirection
impl Unpin for TransmitDirection
impl UnwindSafe for TransmitDirection
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