Suppose I want to append multiple elements (nodes) into a singly linked list where:
struct SLLNode { value: i32, next: Option>, }