Struct grpcio_sys::grpc_ssl_pem_key_cert_pair [−][src]
#[repr(C)]pub struct grpc_ssl_pem_key_cert_pair {
pub private_key: *const c_char,
pub cert_chain: *const c_char,
}
Expand description
Object that holds a private key / certificate chain pair in PEM format.
Fields
private_key: *const c_char
private_key is the NULL-terminated string containing the PEM encoding of the client’s private key.
cert_chain: *const c_char
cert_chain is the NULL-terminated string containing the PEM encoding of the client’s certificate chain.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for grpc_ssl_pem_key_cert_pair
impl !Send for grpc_ssl_pem_key_cert_pair
impl !Sync for grpc_ssl_pem_key_cert_pair
impl Unpin for grpc_ssl_pem_key_cert_pair
impl UnwindSafe for grpc_ssl_pem_key_cert_pair
Blanket Implementations
Mutably borrows from an owned value. Read more