pub struct SplitLink<Tx, Rx> { /* private fields */ }Expand description
Link wrapper that re-combines pre-split Tx/Rx halves into a Link.
This is used by prepare_acceptor_attachment after consuming the inbound
ClientHello during stable-conduit setup.
Trait 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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<L> IntoConduit for Lwhere
L: Link,
impl<L> IntoConduit for Lwhere
L: Link,
Source§type Conduit = BareConduit<MessageFamily, L>
type Conduit = BareConduit<MessageFamily, L>
The conduit type produced by this conversion.
Source§fn into_conduit(self) -> <L as IntoConduit>::Conduit
fn into_conduit(self) -> <L as IntoConduit>::Conduit
Convert into a conduit.