pub enum Event<K, Doc> {
Query(RQuery<K, Doc>),
Subscribed(Sender<Event<K, Doc>>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<K, Doc> !RefUnwindSafe for Event<K, Doc>
impl<K, Doc> Send for Event<K, Doc>where Doc: Send, K: Send,
impl<K, Doc> Sync for Event<K, Doc>where Doc: Send + Sync, K: Send + Sync,
impl<K, Doc> Unpin for Event<K, Doc>where Doc: Unpin, K: Unpin,
impl<K, Doc> !UnwindSafe for Event<K, Doc>
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