pub struct Request<M, R>where
R: 'static,{ /* private fields */ }Implementations§
Trait Implementations§
impl<M, R> Send for Request<M, R>
Safety: Only the Address or DynamicAddress build requests, meaning that they will use the approriate mutex even if it uses DynamicSender internally For DynamicAddress a NoopRawMutex since it’s already not send For Address, the matching mutex is used
Auto Trait Implementations§
impl<M, R> Freeze for Request<M, R>where
M: Freeze,
impl<M, R> !RefUnwindSafe for Request<M, R>
impl<M, R> !Sync for Request<M, R>
impl<M, R> Unpin for Request<M, R>where
M: Unpin,
impl<M, R> !UnwindSafe for Request<M, R>
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