pub struct ListNode {
pub previous: *mut usize,
pub current: *mut usize,
}Expand description
A mutable list node in LinkedList
Fields§
§previous: *mut usize§current: *mut usizeImplementations§
Auto Trait Implementations§
impl !Send for ListNode
impl !Sync for ListNode
impl Freeze for ListNode
impl RefUnwindSafe for ListNode
impl Unpin for ListNode
impl UnsafeUnpin for ListNode
impl UnwindSafe for ListNode
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