pub struct WithEventHandlers<'a, S: Sequencer, W: WaitingStrategy, D: DataProvider<T>, T>{ /* private fields */ }Implementations§
Source§impl<'a, S: Sequencer + 'a, W: WaitingStrategy, D: DataProvider<T> + 'a, T> WithEventHandlers<'a, S, W, D, T>
impl<'a, S: Sequencer + 'a, W: WaitingStrategy, D: DataProvider<T> + 'a, T> WithEventHandlers<'a, S, W, D, T>
pub fn with_barrier( self, f: impl FnOnce(&mut BarrierScope<'a, S, D, T>), ) -> WithEventHandlers<'a, S, W, D, T>
pub fn build( self, ) -> (impl EventProcessorExecutor<'a>, impl EventProducer<'a, Item = T>)
pub fn build_with_executor<E: EventProcessorExecutor<'a>>( self, ) -> (E, impl EventProducer<'a, Item = T>)
Auto Trait Implementations§
impl<'a, S, W, D, T> Freeze for WithEventHandlers<'a, S, W, D, T>where
S: Freeze,
impl<'a, S, W, D, T> !RefUnwindSafe for WithEventHandlers<'a, S, W, D, T>
impl<'a, S, W, D, T> Send for WithEventHandlers<'a, S, W, D, T>where
S: Send,
impl<'a, S, W, D, T> !Sync for WithEventHandlers<'a, S, W, D, T>
impl<'a, S, W, D, T> Unpin for WithEventHandlers<'a, S, W, D, T>
impl<'a, S, W, D, T> !UnwindSafe for WithEventHandlers<'a, S, W, D, T>
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