Type Alias virtual_fs::pipe::WasiBidirectionalSharedPipePair
source · pub type WasiBidirectionalSharedPipePair = ArcFile<DuplexPipe>;
Expand description
Shared version of BidiPipe for situations where you need
to emulate the old behaviour of Pipe
(both send and recv on one channel).
Aliased Type§
struct WasiBidirectionalSharedPipePair {
inner: Arc<Mutex<Box<DuplexPipe>>>,
}
Fields§
§inner: Arc<Mutex<Box<DuplexPipe>>>