pub struct RawAsyncChannel<M: RingMem> {
pub in_ring: IncomingRing<M>,
pub out_ring: OutgoingRing<M>,
pub signal: Box<dyn SignalVmbusChannel>,
}
Expand description
The resources for a bidirectional vmbus channel.
Fields§
§in_ring: IncomingRing<M>
The incoming ring buffer.
out_ring: OutgoingRing<M>
The outgoing ring buffer.
signal: Box<dyn SignalVmbusChannel>
The object to use to communicate notifications with the remote endpoint.
Auto Trait Implementations§
impl<M> Freeze for RawAsyncChannel<M>where
M: Freeze,
impl<M> !RefUnwindSafe for RawAsyncChannel<M>
impl<M> Send for RawAsyncChannel<M>
impl<M> Sync for RawAsyncChannel<M>where
M: Sync,
impl<M> Unpin for RawAsyncChannel<M>where
M: Unpin,
impl<M> !UnwindSafe for RawAsyncChannel<M>
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