Struct openssl::ssl::SslFiletype [−][src]
pub struct SslFiletype(_);
An identifier of the format of a certificate or key file.
Implementations
impl SslFiletype
[src]
impl SslFiletype
[src]pub const PEM: SslFiletype
[src]
The PEM format.
This corresponds to SSL_FILETYPE_PEM
.
pub const ASN1: SslFiletype
[src]
The ASN1 format.
This corresponds to SSL_FILETYPE_ASN1
.
pub fn from_raw(raw: c_int) -> SslFiletype
[src]
Constructs an SslFiletype
from a raw OpenSSL value.
pub fn as_raw(&self) -> c_int
[src]
Returns the raw OpenSSL value represented by this type.
Trait Implementations
impl Clone for SslFiletype
[src]
impl Clone for SslFiletype
[src]