Struct fdb_rl::scan::TimeScanLimiter
source · pub struct TimeScanLimiter {
limiter_mode: TimeLimiterMode,
start_instant: Option<Instant>,
time_limit_duration: Option<Duration>,
}
Expand description
Track time remaining until a given time limit, after which scans should not be allowed.
Fields§
§limiter_mode: TimeLimiterMode
§start_instant: Option<Instant>
§time_limit_duration: Option<Duration>
Implementations§
source§impl TimeScanLimiter
impl TimeScanLimiter
sourcepub fn new(time_limit: u64) -> TimeScanLimiter
pub fn new(time_limit: u64) -> TimeScanLimiter
Create a TimeScanLimiter
with time_limit
specified in
milliseconds.
sourcepub fn unlimited() -> TimeScanLimiter
pub fn unlimited() -> TimeScanLimiter
Create an unlimited TimeScanLimiter
sourcepub(crate) fn try_keyvalue_scan(&self) -> bool
pub(crate) fn try_keyvalue_scan(&self) -> bool
Return true
if keyvalue can be read otherwise return
false
.
Used by LimitManager::try_keyvalue_scan
(Linking does not work!).
Trait Implementations§
source§impl Clone for TimeScanLimiter
impl Clone for TimeScanLimiter
source§fn clone(&self) -> TimeScanLimiter
fn clone(&self) -> TimeScanLimiter
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 TimeScanLimiter
impl Debug for TimeScanLimiter
source§impl PartialEq<TimeScanLimiter> for TimeScanLimiter
impl PartialEq<TimeScanLimiter> for TimeScanLimiter
source§fn eq(&self, other: &TimeScanLimiter) -> bool
fn eq(&self, other: &TimeScanLimiter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TimeScanLimiter
Auto Trait Implementations§
impl RefUnwindSafe for TimeScanLimiter
impl Send for TimeScanLimiter
impl Sync for TimeScanLimiter
impl Unpin for TimeScanLimiter
impl UnwindSafe for TimeScanLimiter
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