pub struct TransferReport<T> {
pub summary: TransferSummary,
pub outcomes: Vec<TransferOutcome<T>>,
pub was_cancelled: bool,
}Expand description
Aggregate execution result and per-candidate outcomes.
Fields§
§summary: TransferSummary§outcomes: Vec<TransferOutcome<T>>§was_cancelled: boolImplementations§
Source§impl<T> TransferReport<T>
impl<T> TransferReport<T>
Sourcepub fn first_failure(&self) -> Option<&Error>
pub fn first_failure(&self) -> Option<&Error>
Return the first failure in deterministic plan order.
Trait Implementations§
Auto Trait Implementations§
impl<T> !RefUnwindSafe for TransferReport<T>
impl<T> !UnwindSafe for TransferReport<T>
impl<T> Freeze for TransferReport<T>
impl<T> Send for TransferReport<T>where
T: Send,
impl<T> Sync for TransferReport<T>where
T: Sync,
impl<T> Unpin for TransferReport<T>where
T: Unpin,
impl<T> UnsafeUnpin for TransferReport<T>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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