Struct distant_net::MpscTransport
source · [−]pub struct MpscTransport<T, U> { /* private fields */ }
Expand description
Represents a TypedTransport
of data across the network that uses mpsc::Sender
and
mpsc::Receiver
underneath.
Implementations
sourceimpl<T, U> MpscTransport<T, U>
impl<T, U> MpscTransport<T, U>
pub fn new(outbound: Sender<T>, inbound: Receiver<U>) -> Self
sourcepub fn pair(buffer: usize) -> (MpscTransport<T, U>, MpscTransport<U, T>)
pub fn pair(buffer: usize) -> (MpscTransport<T, U>, MpscTransport<U, T>)
Creates a pair of connected transports using buffer
as maximum
channel capacity for each
Trait Implementations
sourceimpl<T: Debug, U: Debug> Debug for MpscTransport<T, U>
impl<T: Debug, U: Debug> Debug for MpscTransport<T, U>
sourceimpl<T, U> IntoSplit for MpscTransport<T, U>
impl<T, U> IntoSplit for MpscTransport<T, U>
type Read = MpscTransportReadHalf<U>
type Write = MpscTransportWriteHalf<T>
fn into_split(self) -> (Self::Write, Self::Read)
sourceimpl<T: Send, U: Send> TypedAsyncRead<U> for MpscTransport<T, U>
impl<T: Send, U: Send> TypedAsyncRead<U> for MpscTransport<T, U>
sourceimpl<T: Send, U: Send> TypedAsyncWrite<T> for MpscTransport<T, U>
impl<T: Send, U: Send> TypedAsyncWrite<T> for MpscTransport<T, U>
impl<T: Send, U: Send> TypedTransport<T, U> for MpscTransport<T, U>
Auto Trait Implementations
impl<T, U> !RefUnwindSafe for MpscTransport<T, U>
impl<T, U> Send for MpscTransport<T, U> where
T: Send,
U: Send,
impl<T, U> Sync for MpscTransport<T, U> where
T: Send,
U: Send,
impl<T, U> Unpin for MpscTransport<T, U>
impl<T, U> !UnwindSafe for MpscTransport<T, U>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more