Type Alias tokio::runtime::time::entry::EntryList

source ·
pub(super) type EntryList = LinkedList<TimerShared, TimerShared>;

Aliased Type§

struct EntryList {
    head: Option<NonNull<TimerShared>>,
    tail: Option<NonNull<TimerShared>>,
    _marker: PhantomData<*const TimerShared>,
}

Fields§

§head: Option<NonNull<TimerShared>>

Linked list head

§tail: Option<NonNull<TimerShared>>

Linked list tail

§_marker: PhantomData<*const TimerShared>

Node type marker.