pub struct BoxHrTimerHandle<T, A>where
T: HasHrTimer<T>,
A: Allocator,{ /* private fields */ }
Expand description
A handle for a Box<HasHrTimer<T>>
returned by a call to
HrTimerPointer::start
.
§Invariants
self.inner
comes from aBox::into_raw
call.
Trait Implementations§
Source§impl<T, A> Drop for BoxHrTimerHandle<T, A>where
T: HasHrTimer<T>,
A: Allocator,
impl<T, A> Drop for BoxHrTimerHandle<T, A>where
T: HasHrTimer<T>,
A: Allocator,
Source§impl<T, A> HrTimerHandle for BoxHrTimerHandle<T, A>where
T: HasHrTimer<T>,
A: Allocator,
impl<T, A> HrTimerHandle for BoxHrTimerHandle<T, A>where
T: HasHrTimer<T>,
A: Allocator,
Auto Trait Implementations§
impl<T, A> Freeze for BoxHrTimerHandle<T, A>
impl<T, A> RefUnwindSafe for BoxHrTimerHandle<T, A>where
A: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, A> !Send for BoxHrTimerHandle<T, A>
impl<T, A> !Sync for BoxHrTimerHandle<T, A>
impl<T, A> Unpin for BoxHrTimerHandle<T, A>where
A: Unpin,
impl<T, A> UnwindSafe for BoxHrTimerHandle<T, A>where
T: RefUnwindSafe,
A: UnwindSafe,
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