pub struct CallContext<Argument> {
    pub state: Arc<Mutex<State>>,
    pub caller: &'static str,
    pub argument: Argument,
}Fields§
§state: Arc<Mutex<State>>§caller: &'static str§argument: ArgumentImplementations§
Auto Trait Implementations§
impl<Argument> Freeze for CallContext<Argument>where
    Argument: Freeze,
impl<Argument> !RefUnwindSafe for CallContext<Argument>
impl<Argument> !Send for CallContext<Argument>
impl<Argument> !Sync for CallContext<Argument>
impl<Argument> Unpin for CallContext<Argument>where
    Argument: Unpin,
impl<Argument> !UnwindSafe for CallContext<Argument>
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