Implementing a Linked List in Rust.
6 min readApr 21, 2022
--
In this story we are going to look at a very common used data structure, that is, a linked list. After looking at its definition we will provide a possible realization in Rust. When it comes to data structures Rust is known to be a little tricky because of its strict ownership rules. Though, we will see linked lists as a relative simple structure, will not provide too many difficulties. At the end we will use our learned to…