pub struct BarnacleResult {
pub allowed: bool,
pub remaining: u32,
pub retry_after: Option<Duration>,
}
Expand description
Result of an increment attempt
Fields§
§allowed: bool
§remaining: u32
§retry_after: Option<Duration>
Trait Implementations§
Source§impl Clone for BarnacleResult
impl Clone for BarnacleResult
Source§fn clone(&self) -> BarnacleResult
fn clone(&self) -> BarnacleResult
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 moreAuto Trait Implementations§
impl Freeze for BarnacleResult
impl RefUnwindSafe for BarnacleResult
impl Send for BarnacleResult
impl Sync for BarnacleResult
impl Unpin for BarnacleResult
impl UnwindSafe for BarnacleResult
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