pub struct MultiResult {
pub results: Vec<DatabaseResult>,
pub all_succeeded: bool,
}Expand description
Aggregate result from a multi-db operation.
Fields§
§results: Vec<DatabaseResult>Per-database operation results.
all_succeeded: boolWhether every database operation succeeded.
Trait Implementations§
Source§impl Debug for MultiResult
impl Debug for MultiResult
Auto Trait Implementations§
impl Freeze for MultiResult
impl RefUnwindSafe for MultiResult
impl Send for MultiResult
impl Sync for MultiResult
impl Unpin for MultiResult
impl UnsafeUnpin for MultiResult
impl UnwindSafe for MultiResult
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