Enum akka_projection_rs::offset_store::Command
source · pub enum Command {
GetLastOffset {
reply_to: Sender<Option<LastOffset>>,
},
GetOffset {
persistence_id: PersistenceId,
reply_to: Sender<Option<Offset>>,
},
SaveOffset {
persistence_id: PersistenceId,
offset: Offset,
},
}
Variants§
Auto Trait Implementations§
impl !RefUnwindSafe for Command
impl Send for Command
impl Sync for Command
impl Unpin for Command
impl !UnwindSafe for Command
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