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.rs183 struct Entry { struct
184 val: usize,
185 node: Node<Entry>,
188 impl Entry { impl
189 fn new(val: usize) -> Entry { in new()
201 unsafe fn address_of_node(mut ptr: NonNull<Entry>) -> NonNull<Node<Entry>> { in address_of_node()
210 unsafe impl Link for Entry { implementation
Dslots.rs25 struct Entry<T> { struct
31 impl<T> Entry<T> { argument
Dslab.rs69 pub trait Entry: Default { interface