pub struct Builder<'a, KeyValue> { /* private fields */ }
Expand description
Builder for a Command::Get
key-value operation.
Implementations§
§impl<'a, K> Builder<'a, K>where
K: KeyValue,
impl<'a, K> Builder<'a, K>where K: KeyValue,
pub const fn and_delete(self) -> Builder<'a, K>
pub const fn and_delete(self) -> Builder<'a, K>
Delete the key after retrieving the value.
pub fn into<V>(self) -> Result<Option<V>, Error>where
V: for<'de> Deserialize<'de>,
pub fn into<V>(self) -> Result<Option<V>, Error>where V: for<'de> Deserialize<'de>,
pub fn into_f64_lossy(self) -> Result<Option<f64>, Error>
pub fn into_f64_lossy(self) -> Result<Option<f64>, Error>
Auto Trait Implementations§
impl<'a, KeyValue> RefUnwindSafe for Builder<'a, KeyValue>where KeyValue: RefUnwindSafe,
impl<'a, KeyValue> Send for Builder<'a, KeyValue>where KeyValue: Sync,
impl<'a, KeyValue> Sync for Builder<'a, KeyValue>where KeyValue: Sync,
impl<'a, KeyValue> Unpin for Builder<'a, KeyValue>
impl<'a, KeyValue> UnwindSafe for Builder<'a, KeyValue>where KeyValue: RefUnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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