pub struct LinkedList<T>(/* private fields */)
where
T: PartialEq;
Implementations§
Source§impl<T: PartialEq> LinkedList<T>
impl<T: PartialEq> LinkedList<T>
pub fn new() -> LinkedList<T>
Trait Implementations§
Source§impl<T> Debug for LinkedList<T>
impl<T> Debug for LinkedList<T>
Auto Trait Implementations§
impl<T> Freeze for LinkedList<T>where
T: Freeze,
impl<T> RefUnwindSafe for LinkedList<T>where
T: RefUnwindSafe,
impl<T> Send for LinkedList<T>where
T: Send,
impl<T> Sync for LinkedList<T>where
T: Sync,
impl<T> Unpin for LinkedList<T>where
T: Unpin,
impl<T> UnwindSafe for LinkedList<T>where
T: UnwindSafe,
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