pub struct RefreshOptions {
pub timeout_secs: Option<u64>,
}Expand description
Options for the key refresh operation.
Fields§
§timeout_secs: Option<u64>Timeout for the entire refresh operation, in seconds. If None, no timeout is applied.
Trait Implementations§
Source§impl Clone for RefreshOptions
impl Clone for RefreshOptions
Source§fn clone(&self) -> RefreshOptions
fn clone(&self) -> RefreshOptions
Returns a duplicate 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 RefreshOptions
impl Debug for RefreshOptions
Source§impl Default for RefreshOptions
impl Default for RefreshOptions
Source§fn default() -> RefreshOptions
fn default() -> RefreshOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RefreshOptions
impl RefUnwindSafe for RefreshOptions
impl Send for RefreshOptions
impl Sync for RefreshOptions
impl Unpin for RefreshOptions
impl UnwindSafe for RefreshOptions
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