pub struct Stackelement<AT: Default> {
pub si: usize,
pub value: AT,
}Fields§
§si: usize§value: ATAuto Trait Implementations§
impl<AT> Freeze for Stackelement<AT>where
AT: Freeze,
impl<AT> RefUnwindSafe for Stackelement<AT>where
AT: RefUnwindSafe,
impl<AT> Send for Stackelement<AT>where
AT: Send,
impl<AT> Sync for Stackelement<AT>where
AT: Sync,
impl<AT> Unpin for Stackelement<AT>where
AT: Unpin,
impl<AT> UnwindSafe for Stackelement<AT>where
AT: 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