pub struct BridgeHandles {
pub rx_a: Capture,
pub tx_b: Injector,
pub rx_b: Capture,
pub tx_a: Injector,
}Expand description
The four backend handles that make up a Bridge.
Returned by Bridge::into_inner.
Fields§
§rx_a: CaptureRX on interface A.
tx_b: InjectorTX on interface B (forwards A→B).
rx_b: CaptureRX on interface B.
tx_a: InjectorTX on interface A (forwards B→A).
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for BridgeHandles
impl !RefUnwindSafe for BridgeHandles
impl Send for BridgeHandles
impl !Sync for BridgeHandles
impl Unpin for BridgeHandles
impl UnsafeUnpin for BridgeHandles
impl UnwindSafe for BridgeHandles
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