pub struct DequeData {
pub items: VecDeque<ValueWord>,
}Expand description
Data for Deque variant — double-ended queue backed by VecDeque.
Fields§
§items: VecDeque<ValueWord>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DequeData
impl RefUnwindSafe for DequeData
impl Send for DequeData
impl Sync for DequeData
impl Unpin for DequeData
impl UnsafeUnpin for DequeData
impl UnwindSafe for DequeData
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