Doubly-linked list/Element insertion: Difference between revisions

Line 959:
 
=== The behind-the-scenes implementation ===
This expands upon the implementation defined in [[Doubly-linked list/Element definition#RustThe_behind-the-scenes_implementation]] and consists of the relevant lines from the LinkedList implementation in the Rust standard library.
 
<lang rust>impl<T> Node<T> {