pub fn insert_at_beginning<T: Display>( head: Option<Box<ListNode<T>>>, data: T, ) -> Box<ListNode<T>>