pub struct RelayChannelHalf<Request, Response> {
pub request_receive: Receiver<Request>,
pub response_send: Sender<Response>,
}
Expand description
The relay side of a connection between a vmbus server and a relay.
Fields§
§request_receive: Receiver<Request>
§response_send: Sender<Response>
Auto Trait Implementations§
impl<Request, Response> Freeze for RelayChannelHalf<Request, Response>
impl<Request, Response> !RefUnwindSafe for RelayChannelHalf<Request, Response>
impl<Request, Response> Send for RelayChannelHalf<Request, Response>
impl<Request, Response> Sync for RelayChannelHalf<Request, Response>
impl<Request, Response> Unpin for RelayChannelHalf<Request, Response>
impl<Request, Response> !UnwindSafe for RelayChannelHalf<Request, Response>
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