pub struct WriteChannel<I: SyncIO, M: MessageEncoding> {
pub remote: I::Address,
pub input: Receiver<M>,
pub output: I::Write,
pub settings: NetIoSettings,
}Fields§
§remote: I::Address§input: Receiver<M>§output: I::Write§settings: NetIoSettingsImplementations§
Source§impl<I: SyncIO, M: MessageEncoding + Send + Sync + 'static> WriteChannel<I, M>
impl<I: SyncIO, M: MessageEncoding + Send + Sync + 'static> WriteChannel<I, M>
Auto Trait Implementations§
impl<I, M> Freeze for WriteChannel<I, M>
impl<I, M> RefUnwindSafe for WriteChannel<I, M>
impl<I, M> Send for WriteChannel<I, M>where
M: Send,
impl<I, M> Sync for WriteChannel<I, M>
impl<I, M> Unpin for WriteChannel<I, M>
impl<I, M> UnsafeUnpin for WriteChannel<I, M>
impl<I, M> UnwindSafe for WriteChannel<I, 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