pub type Channel = Cursor<Vec<u8>>;
Expand description
Describes in- or outbound channels of an crate::agent::Agent
.
Each crate::agent::Agent
can send and receive data. This is modeled by two separate Channels
in MemoryStream
. Internally a Channel is just an in-memory seekable buffer.
Aliased Type§
struct Channel { /* private fields */ }