pub trait PublicKeyParts {
// Required methods
fn n(&self) -> &BigUint;
fn e(&self) -> &BigUint;
// Provided method
fn size(&self) -> usize { ... }
}Expand description
Components of an RSA public key.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".