Trait MigrateBackupTrait

Source
pub trait MigrateBackupTrait {
    // Provided method
    fn migrate_backup(
        &self,
        _shasta_token: &str,
        _shasta_base_url: &str,
        _shasta_root_cert: &[u8],
        _bos: Option<&String>,
        _destination: Option<&String>,
    ) -> impl Future<Output = Result<(), Error>> + Send { ... }
}

Provided Methods§

Source

fn migrate_backup( &self, _shasta_token: &str, _shasta_base_url: &str, _shasta_root_cert: &[u8], _bos: Option<&String>, _destination: Option<&String>, ) -> impl Future<Output = Result<(), Error>> + 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§