pub enum CallResponse<G: GenServer> {
    Reply(G::State, G::OutMsg),
    Unused,
    Stop(G::OutMsg),
}Variants§
Auto Trait Implementations§
impl<G> Freeze for CallResponse<G>
impl<G> RefUnwindSafe for CallResponse<G>
impl<G> Send for CallResponse<G>
impl<G> Sync for CallResponse<G>
impl<G> Unpin for CallResponse<G>
impl<G> UnwindSafe for CallResponse<G>
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