pub enum Fate {
Missing,
Gone,
Held,
}Expand description
What one ID a delete was asked about came to.
The numbers are Redis’s and they are not a success flag: a caller sending a list of IDs gets one of these each and has to be able to tell an entry that was never there from one that is still there on purpose.
Variants§
Missing
There was nothing here to do.
Gone
It went.
Held
Somebody could still be handed it, so it stayed.
Implementations§
Trait Implementations§
impl Copy for Fate
impl Eq for Fate
impl StructuralPartialEq for Fate
Auto Trait Implementations§
impl Freeze for Fate
impl RefUnwindSafe for Fate
impl Send for Fate
impl Sync for Fate
impl Unpin for Fate
impl UnsafeUnpin for Fate
impl UnwindSafe for Fate
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