pub struct MigrationReport {
pub migrated: usize,
pub skipped: usize,
pub errors: Vec<MigrationError>,
}Expand description
Summary produced by a MigrationRunner::run call.
Fields§
§migrated: usizeNumber of streams successfully migrated and snapshotted.
skipped: usizeNumber of streams skipped (wrong workflow_id, empty, or already migrated).
errors: Vec<MigrationError>Streams that encountered an error during replay, migration, or snapshot.
Implementations§
Source§impl MigrationReport
impl MigrationReport
Trait Implementations§
Source§impl Debug for MigrationReport
impl Debug for MigrationReport
Source§impl Default for MigrationReport
impl Default for MigrationReport
Source§fn default() -> MigrationReport
fn default() -> MigrationReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MigrationReport
impl RefUnwindSafe for MigrationReport
impl Send for MigrationReport
impl Sync for MigrationReport
impl Unpin for MigrationReport
impl UnsafeUnpin for MigrationReport
impl UnwindSafe for MigrationReport
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