pub struct WorkQueueProjection<TPage> {
pub snapshot: Node<TPage>,
pub snapshot_pull_id: LockId,
pub status: Node<WorkQueueStatus>,
pub issues: Node<DataIssue>,
}Expand description
WorkQueueProjection data container.
Fields§
§snapshot: Node<TPage>snapshot field for snapshot.
snapshot_pull_id: LockIdsnapshot_pull_id field for snapshot pull id.
status: Node<WorkQueueStatus>status field for status.
issues: Node<DataIssue>issues field for issues.
Trait Implementations§
Source§impl<TPage: Clone> Clone for WorkQueueProjection<TPage>
impl<TPage: Clone> Clone for WorkQueueProjection<TPage>
Source§fn clone(&self) -> WorkQueueProjection<TPage>
fn clone(&self) -> WorkQueueProjection<TPage>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<TPage> Freeze for WorkQueueProjection<TPage>
impl<TPage> !RefUnwindSafe for WorkQueueProjection<TPage>
impl<TPage> !Send for WorkQueueProjection<TPage>
impl<TPage> !Sync for WorkQueueProjection<TPage>
impl<TPage> Unpin for WorkQueueProjection<TPage>where
TPage: Unpin,
impl<TPage> UnsafeUnpin for WorkQueueProjection<TPage>
impl<TPage> !UnwindSafe for WorkQueueProjection<TPage>
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