pub struct AutomaticQueueSnapshot {
pub generation: u64,
pub next_sequence: u64,
pub entries: Vec<QueuedCalculation>,
}Expand description
Restartable snapshot of the deterministic automatic queue.
Fields§
§generation: u64Queue generation.
next_sequence: u64Next stable insertion sequence.
entries: Vec<QueuedCalculation>Queue entries in canonical cell order.
Trait Implementations§
Source§impl Clone for AutomaticQueueSnapshot
impl Clone for AutomaticQueueSnapshot
Source§fn clone(&self) -> AutomaticQueueSnapshot
fn clone(&self) -> AutomaticQueueSnapshot
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutomaticQueueSnapshot
impl Debug for AutomaticQueueSnapshot
impl Eq for AutomaticQueueSnapshot
Source§impl PartialEq for AutomaticQueueSnapshot
impl PartialEq for AutomaticQueueSnapshot
impl StructuralPartialEq for AutomaticQueueSnapshot
Auto Trait Implementations§
impl Freeze for AutomaticQueueSnapshot
impl RefUnwindSafe for AutomaticQueueSnapshot
impl Send for AutomaticQueueSnapshot
impl Sync for AutomaticQueueSnapshot
impl Unpin for AutomaticQueueSnapshot
impl UnsafeUnpin for AutomaticQueueSnapshot
impl UnwindSafe for AutomaticQueueSnapshot
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