Trait pem_rfc7468::PemLabel

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

    // Provided method
    fn validate_pem_label(actual: &str) -> Result<()> { ... }
}
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<()>

Validate that a given label matches the expected label.

Object Safety§

This trait is not object safe.

Implementors§