pub struct SequentialExecutor;Expand description
The SequentialExecutor is an implementation of the Executor trait that executes messages sequentially.
It handles messages one at a time, ensuring that each message is fully processed before moving on to the next one. This executor is suitable for scenarios where message ordering is important and concurrent execution is not required.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SequentialExecutor
impl RefUnwindSafe for SequentialExecutor
impl Send for SequentialExecutor
impl Sync for SequentialExecutor
impl Unpin for SequentialExecutor
impl UnwindSafe for SequentialExecutor
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