pub struct WorkQueueAvailableProjection<T> {
pub available: Node<WorkQueueAvailablePage<T>>,
pub available_pull_id: LockId,
pub status: Node<WorkQueueStatus>,
pub issues: Node<DataIssue>,
}Expand description
WorkQueueAvailableProjection data container.
Fields§
§available: Node<WorkQueueAvailablePage<T>>available field for available.
available_pull_id: LockIdavailable_pull_id field for available pull id.
status: Node<WorkQueueStatus>status field for status.
issues: Node<DataIssue>issues field for issues.
Trait Implementations§
Source§impl<T: Clone> Clone for WorkQueueAvailableProjection<T>
impl<T: Clone> Clone for WorkQueueAvailableProjection<T>
Source§fn clone(&self) -> WorkQueueAvailableProjection<T>
fn clone(&self) -> WorkQueueAvailableProjection<T>
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<T> Freeze for WorkQueueAvailableProjection<T>
impl<T> !RefUnwindSafe for WorkQueueAvailableProjection<T>
impl<T> !Send for WorkQueueAvailableProjection<T>
impl<T> !Sync for WorkQueueAvailableProjection<T>
impl<T> Unpin for WorkQueueAvailableProjection<T>where
T: Unpin,
impl<T> UnsafeUnpin for WorkQueueAvailableProjection<T>
impl<T> !UnwindSafe for WorkQueueAvailableProjection<T>
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