pub struct SplitLink<Tx, Rx> {
pub tx: Tx,
pub rx: Rx,
}Expand description
A Link assembled from pre-split Tx and Rx halves.
Fields§
§tx: Tx§rx: RxTrait Implementations§
Auto Trait Implementations§
impl<Tx, Rx> Freeze for SplitLink<Tx, Rx>
impl<Tx, Rx> RefUnwindSafe for SplitLink<Tx, Rx>where
Tx: RefUnwindSafe,
Rx: RefUnwindSafe,
impl<Tx, Rx> Send for SplitLink<Tx, Rx>
impl<Tx, Rx> Sync for SplitLink<Tx, Rx>
impl<Tx, Rx> Unpin for SplitLink<Tx, Rx>
impl<Tx, Rx> UnsafeUnpin for SplitLink<Tx, Rx>where
Tx: UnsafeUnpin,
Rx: UnsafeUnpin,
impl<Tx, Rx> UnwindSafe for SplitLink<Tx, Rx>where
Tx: UnwindSafe,
Rx: UnwindSafe,
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