Migrate

Trait Migrate 

Source
pub trait Migrate {
    // Required method
    fn migrate(
        &self,
    ) -> impl Future<Output = Result<(), OperationOutcomeError>> + Send;
}

Required Methods§

Source

fn migrate( &self, ) -> impl Future<Output = Result<(), OperationOutcomeError>> + Send

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§