Struct rocksdb::rocksdb_options::RateLimiter[][src]

pub struct RateLimiter { /* fields omitted */ }

Implementations

impl RateLimiter[src]

pub fn new(
    rate_bytes_per_sec: i64,
    refill_period_us: i64,
    fairness: i32
) -> RateLimiter
[src]

pub fn new_with_auto_tuned(
    rate_bytes_per_sec: i64,
    refill_period_us: i64,
    fairness: i32,
    mode: DBRateLimiterMode,
    auto_tuned: bool
) -> RateLimiter
[src]

pub fn new_writeampbased_with_auto_tuned(
    rate_bytes_per_sec: i64,
    refill_period_us: i64,
    fairness: i32,
    mode: DBRateLimiterMode,
    auto_tuned: bool
) -> RateLimiter
[src]

pub fn set_bytes_per_second(&self, bytes_per_sec: i64)[src]

pub fn get_singleburst_bytes(&self) -> i64[src]

pub fn request(&self, bytes: i64, pri: c_uchar)[src]

pub fn get_total_bytes_through(&self, pri: c_uchar) -> i64[src]

pub fn get_bytes_per_second(&self) -> i64[src]

pub fn get_total_requests(&self, pri: c_uchar) -> i64[src]

Trait Implementations

impl Drop for RateLimiter[src]

impl Send for RateLimiter[src]

impl Sync for RateLimiter[src]

Auto Trait Implementations

impl RefUnwindSafe for RateLimiter

impl Unpin for RateLimiter

impl UnwindSafe for RateLimiter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.