pub struct PopLeftResult<T> {
pub val: Option<T>,
pub list: Option<Box<LinkedList<T>>>,
}
Fields§
§val: Option<T>
§list: Option<Box<LinkedList<T>>>
Auto Trait Implementations§
impl<T> Freeze for PopLeftResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for PopLeftResult<T>where
T: RefUnwindSafe,
impl<T> Send for PopLeftResult<T>where
T: Send,
impl<T> Sync for PopLeftResult<T>where
T: Sync,
impl<T> Unpin for PopLeftResult<T>where
T: Unpin,
impl<T> UnwindSafe for PopLeftResult<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