Skip to main content

PemLabel

Trait PemLabel 

Source
pub trait PemLabel {
    const PEM_LABEL: &'static str;

    // Provided method
    fn validate_pem_label(actual: &str) -> Result<(), Error> { ... }
}
Available on crate feature pem only.
Expand description

Marker trait for types with an associated PEM type label.

Required Associated Constants§

Source

const PEM_LABEL: &'static str

Expected PEM type label for a given document, e.g. "PRIVATE KEY"

Provided Methods§

Source

fn validate_pem_label(actual: &str) -> Result<(), Error>

Validate that a given label matches the expected label.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§