Searched defs:Entry (Results 1 – 3 of 3) sorted by relevance
183 struct Entry { struct184 val: usize,185 node: Node<Entry>,188 impl Entry { impl189 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
25 struct Entry<T> { struct31 impl<T> Entry<T> { argument
69 pub trait Entry: Default { interface