Searched defs:Entry (Results 1 – 3 of 3) sorted by relevance
175 struct Entry { struct176 val: usize,177 node: Node<Entry>,180 impl Entry { impl181 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
26 struct Entry<T> { struct32 impl<T> Entry<T> { impl
69 pub trait Entry: Default { trait