pub trait CryptoApi: ManagedTypeApi {
    type CryptoApiImpl: CryptoApiImpl;

    // Required method
    fn crypto_api_impl() -> Self::CryptoApiImpl;
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§