pub struct CommandAcknowledgementHandle { /* private fields */ }Expand description
CommandAcknowledgementHandle implements std::future::Future and returns a crate::cache::command::CommandStatus
The initial status in the CommandAcknowledgementHandle is CommandStatus::Pending
The status gets updated when the command is executed by the crate::cache::command::command_executor::CommandExecutor.
Trait Implementations§
Source§impl Future for &CommandAcknowledgementHandle
Future implementation for CommandAcknowledgementHandle.
The future is complete when the the command is executed by the crate::cache::command::command_executor::CommandExecutor.
The completion of future returns CommandStatus.
impl Future for &CommandAcknowledgementHandle
Future implementation for CommandAcknowledgementHandle.
The future is complete when the the command is executed by the crate::cache::command::command_executor::CommandExecutor.
The completion of future returns CommandStatus.
Auto Trait Implementations§
impl !Freeze for CommandAcknowledgementHandle
impl !RefUnwindSafe for CommandAcknowledgementHandle
impl Send for CommandAcknowledgementHandle
impl Sync for CommandAcknowledgementHandle
impl Unpin for CommandAcknowledgementHandle
impl !UnwindSafe for CommandAcknowledgementHandle
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