Skip to main content

ChannelTransport

Struct ChannelTransport 

Source
pub struct ChannelTransport<M> { /* private fields */ }
Expand description

An in-memory NetworkTransport pair over std::sync::mpsc channels.

The engine’s built-in mock: the two ends of one link connection with zero I/O, used for local play and tests. Dropping one end makes the other report TransportError::Disconnected exactly like a closed socket.

Implementations§

Source§

impl<M> ChannelTransport<M>

Source

pub fn new_pair() -> (Self, Self)

Create a connected pair — the two ends of one link connection.

Trait Implementations§

Source§

impl<M> NetworkTransport<M> for ChannelTransport<M>

Source§

fn send(&mut self, msg: M) -> Result<(), TransportError>

Send one message to the peer.
Source§

fn recv(&mut self) -> Result<M, TransportError>

Block until a message arrives or the connection fails.
Source§

fn try_recv(&mut self) -> Result<Option<M>, TransportError>

Non-blocking receive: Ok(None) when nothing is pending, Err(Disconnected) once the peer is gone.

Auto Trait Implementations§

§

impl<M> !Sync for ChannelTransport<M>

§

impl<M> Freeze for ChannelTransport<M>

§

impl<M> RefUnwindSafe for ChannelTransport<M>

§

impl<M> Send for ChannelTransport<M>
where M: Send,

§

impl<M> Unpin for ChannelTransport<M>

§

impl<M> UnsafeUnpin for ChannelTransport<M>

§

impl<M> UnwindSafe for ChannelTransport<M>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.