pub enum Invocation {
Future(Pin<Box<dyn Future<Output = Box<dyn Any + Send>> + Send>>),
Ready(Box<dyn Any + Send>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Invocation
impl !Sync for Invocation
impl !UnwindSafe for Invocation
impl Freeze for Invocation
impl Send for Invocation
impl Unpin for Invocation
impl UnsafeUnpin for Invocation
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