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.rs181 struct Entry { struct
182 val: usize,
183 node: Node<Entry>,
186 impl Entry { impl
187 fn new(val: usize) -> Entry { in new()
199 unsafe fn address_of_node(mut ptr: NonNull<Entry>) -> NonNull<Node<Entry>> { in address_of_node()
208 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