pub struct LinkedList {
pub head: Option<Box<ListNode>>,
}
Fields§
§head: Option<Box<ListNode>>
Implementations§
Auto Trait Implementations§
impl Freeze for LinkedList
impl RefUnwindSafe for LinkedList
impl Send for LinkedList
impl Sync for LinkedList
impl Unpin for LinkedList
impl UnwindSafe for LinkedList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more