pub struct RatioLimit(pub u64, pub u64);Tuple Fields§
§0: u64§1: u64Trait Implementations§
Source§impl Clone for RatioLimit
impl Clone for RatioLimit
Source§fn clone(&self) -> RatioLimit
fn clone(&self) -> RatioLimit
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 RatioLimit
impl Debug for RatioLimit
Source§impl From<RatioLimit> for AssertionValue
impl From<RatioLimit> for AssertionValue
Source§fn from(limit: RatioLimit) -> Self
fn from(limit: RatioLimit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RatioLimit
impl PartialEq for RatioLimit
impl Copy for RatioLimit
impl Eq for RatioLimit
impl StructuralPartialEq for RatioLimit
Auto Trait Implementations§
impl Freeze for RatioLimit
impl RefUnwindSafe for RatioLimit
impl Send for RatioLimit
impl Sync for RatioLimit
impl Unpin for RatioLimit
impl UnsafeUnpin for RatioLimit
impl UnwindSafe for RatioLimit
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more