pub struct Remote {
pub recv: Receiver<Request>,
pub send: Sender<Response>,
pub update: Sender<Update>,
pub handle: JoinHandle<()>,
}Fields§
§recv: Receiver<Request>§send: Sender<Response>§update: Sender<Update>§handle: JoinHandle<()>Implementations§
Auto Trait Implementations§
impl Freeze for Remote
impl !RefUnwindSafe for Remote
impl Send for Remote
impl Sync for Remote
impl Unpin for Remote
impl !UnwindSafe for Remote
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