pub struct DatabaseResult {
pub name: String,
pub success: bool,
pub message: String,
}Expand description
Result from a multi-db operation on a single database.
Fields§
§name: StringLogical name of the database.
success: boolWhether the operation succeeded on this database.
message: StringHuman-readable summary of the operation result.
Trait Implementations§
Source§impl Debug for DatabaseResult
impl Debug for DatabaseResult
Auto Trait Implementations§
impl Freeze for DatabaseResult
impl RefUnwindSafe for DatabaseResult
impl Send for DatabaseResult
impl Sync for DatabaseResult
impl Unpin for DatabaseResult
impl UnsafeUnpin for DatabaseResult
impl UnwindSafe for DatabaseResult
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