pub trait HostWithStore<T>: HasData + Send {
// Required method
fn prepare(
accessor: &Accessor<T, Self>,
input: Resource<Password>,
salt: Vec<u8>,
iterations: u32,
) -> impl Future<Output = Result<Result<Resource<DeriveInput>, Error>>> + Send;
}Required Methods§
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.