Skip to main content

SignatureParamsIdentifier

Trait SignatureParamsIdentifier 

Source
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§

Source

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".

Implementations on Foreign Types§

Source§

impl SignatureParamsIdentifier for Option<SignatureParams>

Source§

impl SignatureParamsIdentifier for String

Source§

impl SignatureParamsIdentifier for str

Source§

impl<T: SignatureParamsIdentifier + ?Sized> SignatureParamsIdentifier for &T

Implementors§