pub struct MigrateNodesReport {
pub upgraded: Vec<NodeMigrationUpgraded>,
pub missing_schema: Vec<NodeMigrationMissingSchema>,
pub missing_migrator: Vec<NodeMigrationMissingMigrator>,
pub newer_than_schema: Vec<NodeMigrationNewerThanSchema>,
pub errors: Vec<NodeMigrationErrorEntry>,
}Fields§
§upgraded: Vec<NodeMigrationUpgraded>§missing_schema: Vec<NodeMigrationMissingSchema>§missing_migrator: Vec<NodeMigrationMissingMigrator>§newer_than_schema: Vec<NodeMigrationNewerThanSchema>§errors: Vec<NodeMigrationErrorEntry>Implementations§
Source§impl MigrateNodesReport
impl MigrateNodesReport
pub fn is_empty(&self) -> bool
pub fn upgraded(&self) -> &[NodeMigrationUpgraded]
pub fn missing_schema(&self) -> &[NodeMigrationMissingSchema]
pub fn missing_migrator(&self) -> &[NodeMigrationMissingMigrator]
pub fn newer_than_schema(&self) -> &[NodeMigrationNewerThanSchema]
pub fn errors(&self) -> &[NodeMigrationErrorEntry]
Trait Implementations§
Source§impl Clone for MigrateNodesReport
impl Clone for MigrateNodesReport
Source§fn clone(&self) -> MigrateNodesReport
fn clone(&self) -> MigrateNodesReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MigrateNodesReport
impl Debug for MigrateNodesReport
Source§impl Default for MigrateNodesReport
impl Default for MigrateNodesReport
Source§fn default() -> MigrateNodesReport
fn default() -> MigrateNodesReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MigrateNodesReport
impl RefUnwindSafe for MigrateNodesReport
impl Send for MigrateNodesReport
impl Sync for MigrateNodesReport
impl Unpin for MigrateNodesReport
impl UnsafeUnpin for MigrateNodesReport
impl UnwindSafe for MigrateNodesReport
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