pub struct SetOptions {
pub set_condition: SetCondition,
pub expires: Option<Duration>,
}
Expand description
Options for a Set
Request
Fields§
§set_condition: SetCondition
Condition for the Set
operation. Default is SetCondition::Unconditional
expires: Option<Duration>
How long the key should persist before it expires, in millisecond precision.
Trait Implementations§
Source§impl Clone for SetOptions
impl Clone for SetOptions
Source§fn clone(&self) -> SetOptions
fn clone(&self) -> SetOptions
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SetOptions
impl Debug for SetOptions
Source§impl Default for SetOptions
impl Default for SetOptions
Source§fn default() -> SetOptions
fn default() -> SetOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SetOptions
impl RefUnwindSafe for SetOptions
impl Send for SetOptions
impl Sync for SetOptions
impl Unpin for SetOptions
impl UnwindSafe for SetOptions
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