pub enum Added {
New,
Changed,
Same,
Full,
}Expand description
What an add did.
Variants§
New
The member was not there and now is. This is what ZADD counts.
Changed
The member was there with a different score.
Same
The member was there with this score already.
Full
The element table is full, so nothing happened.
Trait Implementations§
impl Copy for Added
impl Eq for Added
impl StructuralPartialEq for Added
Auto Trait Implementations§
impl Freeze for Added
impl RefUnwindSafe for Added
impl Send for Added
impl Sync for Added
impl Unpin for Added
impl UnsafeUnpin for Added
impl UnwindSafe for Added
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