pub enum CountOrDuration {
Count(u64),
Duration(Duration),
}Variants§
Auto Trait Implementations§
impl Freeze for CountOrDuration
impl RefUnwindSafe for CountOrDuration
impl Send for CountOrDuration
impl Sync for CountOrDuration
impl Unpin for CountOrDuration
impl UnwindSafe for CountOrDuration
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