Struct wrpc_transport::AcceptedInvocation
source · pub struct AcceptedInvocation<Ctx, T, Tx: Transmitter> {
pub context: Ctx,
pub params: T,
pub result_subject: Tx::Subject,
pub error_subject: Tx::Subject,
pub transmitter: Tx,
}Expand description
An accepted invocation received from a peer
Fields§
§context: Ctx§params: T§result_subject: Tx::Subject§error_subject: Tx::Subject§transmitter: TxAuto Trait Implementations§
impl<Ctx, T, Tx> Freeze for AcceptedInvocation<Ctx, T, Tx>
impl<Ctx, T, Tx> RefUnwindSafe for AcceptedInvocation<Ctx, T, Tx>where
Ctx: RefUnwindSafe,
T: RefUnwindSafe,
Tx: RefUnwindSafe,
<Tx as Transmitter>::Subject: RefUnwindSafe,
impl<Ctx, T, Tx> Send for AcceptedInvocation<Ctx, T, Tx>
impl<Ctx, T, Tx> Sync for AcceptedInvocation<Ctx, T, Tx>
impl<Ctx, T, Tx> Unpin for AcceptedInvocation<Ctx, T, Tx>
impl<Ctx, T, Tx> UnwindSafe for AcceptedInvocation<Ctx, T, Tx>
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