Searched defs:Entry (Results 1 – 3 of 3) sorted by relevance
181 struct Entry { struct182 val: usize,183 node: Node<Entry>,186 impl Entry { impl187 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
26 struct Entry<T> { struct32 impl<T> Entry<T> { impl
69 pub trait Entry: Default { trait