pub struct TickMsg {
pub time: SystemTime,
pub id: i32,
/* private fields */
}Expand description
TickMsg indicates that the timer has ticked and we should render a frame.
Fields§
§time: SystemTimeThe time at which the tick occurred.
id: i32The ID of the spinner that this message belongs to.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TickMsg
impl RefUnwindSafe for TickMsg
impl Send for TickMsg
impl Sync for TickMsg
impl Unpin for TickMsg
impl UnsafeUnpin for TickMsg
impl UnwindSafe for TickMsg
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