pub struct TimerItem { /* private fields */ }Expand description
Item that the Timer will place inside the Pendulum.
Because type constructors are not available (yet), we have to tell users what type
we will be placing into the Pendulum that they give us. So as to not leak any
inner type information, we export this unconstructable type, for user type inference.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TimerItem
impl !RefUnwindSafe for TimerItem
impl Send for TimerItem
impl Sync for TimerItem
impl Unpin for TimerItem
impl !UnwindSafe for TimerItem
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