pub enum FakeCall {
Spawn(RunnerPoolKey),
Shutdown(RunnerPoolKey),
Health(String),
Register(String, FunctionId),
Unregister(String, FunctionId),
Invoke(String, FunctionId),
}Variants§
Spawn(RunnerPoolKey)
Shutdown(RunnerPoolKey)
Health(String)
Register(String, FunctionId)
Unregister(String, FunctionId)
Invoke(String, FunctionId)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FakeCall
impl RefUnwindSafe for FakeCall
impl Send for FakeCall
impl Sync for FakeCall
impl Unpin for FakeCall
impl UnsafeUnpin for FakeCall
impl UnwindSafe for FakeCall
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