pub enum SyncMode {
Async = 0,
TxFollowRx = 1,
RxFollowTx = 2,
}Expand description
Frame sync mode between rx/tx
Variants§
Async = 0
Both tx/rx are setup as being independent of each other for frame sync
TxFollowRx = 1
Tx synchronously follows Rx frame sync
RxFollowTx = 2
Rx synchronously follows Tx frame sync
Trait Implementations§
impl Copy for SyncMode
impl Eq for SyncMode
impl StructuralPartialEq for SyncMode
Auto Trait Implementations§
impl Freeze for SyncMode
impl RefUnwindSafe for SyncMode
impl Send for SyncMode
impl Sync for SyncMode
impl Unpin for SyncMode
impl UnwindSafe for SyncMode
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