pub struct WorkQueueReadinessHandoffBundle {
pub candidates: Node<WorkQueueReadinessCandidate>,
pub status: Node<WorkQueueReadinessStatus>,
pub issues: Node<DataIssue>,
pub audit: Node<ScheduledReadinessAuditRecord>,
pub views: Node<WorkQueueReadinessViews>,
}Expand description
WorkQueueReadinessHandoffBundle data container.
Fields§
§candidates: Node<WorkQueueReadinessCandidate>candidates field for candidates.
status: Node<WorkQueueReadinessStatus>status field for status.
issues: Node<DataIssue>issues field for issues.
audit: Node<ScheduledReadinessAuditRecord>audit field for audit.
views: Node<WorkQueueReadinessViews>views field for views.
Trait Implementations§
Source§impl Clone for WorkQueueReadinessHandoffBundle
impl Clone for WorkQueueReadinessHandoffBundle
Source§fn clone(&self) -> WorkQueueReadinessHandoffBundle
fn clone(&self) -> WorkQueueReadinessHandoffBundle
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 Freeze for WorkQueueReadinessHandoffBundle
impl !RefUnwindSafe for WorkQueueReadinessHandoffBundle
impl !Send for WorkQueueReadinessHandoffBundle
impl !Sync for WorkQueueReadinessHandoffBundle
impl Unpin for WorkQueueReadinessHandoffBundle
impl UnsafeUnpin for WorkQueueReadinessHandoffBundle
impl !UnwindSafe for WorkQueueReadinessHandoffBundle
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