pub trait RosettaAlgorithm {
// Required methods
fn to_signature_type(self) -> SignatureType;
fn to_curve_type(self) -> CurveType;
}Required Methods§
fn to_signature_type(self) -> SignatureType
fn to_curve_type(self) -> CurveType
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".