pub trait SignatureParamsIdentifier {
// Required method
fn botan_name(&self) -> String;
}Expand description
A type that identifies the parameters of a Botan public key signature scheme.
Required Methods§
Sourcefn botan_name(&self) -> String
fn botan_name(&self) -> String
Return the Botan interface string for this identifier.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".