pub struct Outgoing<O> {
next_id: i32,
pending: HashMap<RequestId, O>,
}Fields§
§next_id: i32§pending: HashMap<RequestId, O>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<O> Freeze for Outgoing<O>
impl<O> RefUnwindSafe for Outgoing<O>where
O: RefUnwindSafe,
impl<O> Send for Outgoing<O>where
O: Send,
impl<O> Sync for Outgoing<O>where
O: Sync,
impl<O> Unpin for Outgoing<O>where
O: Unpin,
impl<O> UnwindSafe for Outgoing<O>where
O: UnwindSafe,
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