pub struct Field { /* private fields */ }Expand description
One BITFIELD field type: u8, i37 and so on.
Unsigned goes up to 63 bits and signed to 64, which is Redis’s rule and not
an accident of the reply type: every value comes back as a RESP integer and
a RESP integer is signed, so a u64 could not be reported.
Implementations§
Trait Implementations§
impl Copy for Field
impl Eq for Field
impl StructuralPartialEq for Field
Auto Trait Implementations§
impl Freeze for Field
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnsafeUnpin for Field
impl UnwindSafe for Field
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