pub trait CryptoApi: ManagedTypeApi {
type CryptoApiImpl: CryptoApiImpl + HandleTypeInfo<ManagedBufferHandle = Self::ManagedBufferHandle, BigIntHandle = Self::BigIntHandle, BigFloatHandle = Self::BigFloatHandle, EllipticCurveHandle = Self::EllipticCurveHandle>;
// Required method
fn crypto_api_impl() -> Self::CryptoApiImpl;
}
Required Associated Types§
type CryptoApiImpl: CryptoApiImpl + HandleTypeInfo<ManagedBufferHandle = Self::ManagedBufferHandle, BigIntHandle = Self::BigIntHandle, BigFloatHandle = Self::BigFloatHandle, EllipticCurveHandle = Self::EllipticCurveHandle>
Required Methods§
fn crypto_api_impl() -> Self::CryptoApiImpl
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.