pub trait EncodePem: Encode + PemLabel {
// Required method
fn to_pem(&self, line_ending: LineEnding) -> Result<String>;
}
Available on crate feature
pem
only.Expand description
Required Methods§
Sourcefn to_pem(&self, line_ending: LineEnding) -> Result<String>
fn to_pem(&self, line_ending: LineEnding) -> Result<String>
Try to encode this type as PEM.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.