pub trait HostDecryptionKeyOptionsWithStore<T>: HasData {
// Required method
fn drop(
accessor: &Accessor<T, Self>,
rep: Resource<DecryptionKeyOptions>,
) -> impl Future<Output = Result<()>> + Send
where Self: Sized;
}Required Methods§
fn drop(
accessor: &Accessor<T, Self>,
rep: Resource<DecryptionKeyOptions>,
) -> impl Future<Output = Result<()>> + Sendwhere
Self: Sized,
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.