pub struct DeadLineTimerExpired<Item> {
pub key: DeadLineTimerKey,
pub item: Item,
}Expand description
DeadlineTimer expiration event.
Fields§
§key: DeadLineTimerKeyThe key of the expired item.
item: ItemThe expired item itself.
Trait Implementations§
Auto Trait Implementations§
impl<Item> Freeze for DeadLineTimerExpired<Item>where
Item: Freeze,
impl<Item> RefUnwindSafe for DeadLineTimerExpired<Item>where
Item: RefUnwindSafe,
impl<Item> Send for DeadLineTimerExpired<Item>where
Item: Send,
impl<Item> Sync for DeadLineTimerExpired<Item>where
Item: Sync,
impl<Item> Unpin for DeadLineTimerExpired<Item>where
Item: Unpin,
impl<Item> UnwindSafe for DeadLineTimerExpired<Item>where
Item: 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