pub struct Delete {
pub key: String,
}
Expand description
Actix message delete record in backend by key.
Fields§
§key: String
Key of cache backend record for deleting
Trait Implementations§
Source§impl Message for Delete
impl Message for Delete
Source§type Result = Result<DeleteStatus, BackendError>
type Result = Result<DeleteStatus, BackendError>
The type of value that this message will resolved with if it is
successful.
impl StructuralPartialEq for Delete
Auto Trait Implementations§
impl Freeze for Delete
impl RefUnwindSafe for Delete
impl Send for Delete
impl Sync for Delete
impl Unpin for Delete
impl UnwindSafe for Delete
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