Home
last modified time | relevance | path

Searched defs:Entry (Results 1 – 3 of 3) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/src/util/
Dlinked_list.rs175 struct Entry { struct
176 val: usize,
177 node: Node<Entry>,
180 impl Entry { impl
181 fn new(val: usize) -> Entry { in new()
193 unsafe fn address_of_node(mut ptr: NonNull<Entry>) -> NonNull<Node<Entry>> { in address_of_node()
202 unsafe impl Link for Entry { implementation
Dslots.rs26 struct Entry<T> { struct
32 impl<T> Entry<T> { impl
Dslab.rs69 pub trait Entry: Default { trait