pub struct SummaryOutcome {
pub rows: Vec<SummaryRow>,
pub failed: bool,
}Expand description
Outcome of the summary operation.
Fields§
§rows: Vec<SummaryRow>§failed: boolTrait Implementations§
Source§impl Clone for SummaryOutcome
impl Clone for SummaryOutcome
Source§fn clone(&self) -> SummaryOutcome
fn clone(&self) -> SummaryOutcome
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 SummaryOutcome
impl RefUnwindSafe for SummaryOutcome
impl Send for SummaryOutcome
impl Sync for SummaryOutcome
impl Unpin for SummaryOutcome
impl UnsafeUnpin for SummaryOutcome
impl UnwindSafe for SummaryOutcome
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