[][src]Struct grpcio::ServerCredentialsBuilder

pub struct ServerCredentialsBuilder { /* fields omitted */ }

ServerCredentials factory in order to configure the properties.

Methods

impl ServerCredentialsBuilder[src]

pub fn new() -> ServerCredentialsBuilder[src]

Initialize a new ServerCredentialsBuilder.

pub fn root_cert<S: Into<Vec<u8>>>(
    self,
    cert: S,
    cer_request_type: CertificateRequestType
) -> ServerCredentialsBuilder
[src]

Set the PEM encoded client root certificate to verify client's identity. If force_client_auth is set to true, the authenticity of client check will be enforced.

pub fn add_cert(
    self,
    cert: Vec<u8>,
    private_key: Vec<u8>
) -> ServerCredentialsBuilder
[src]

Add a PEM encoded server side certificate and key.

pub fn build(self) -> ServerCredentials[src]

Finalize the ServerCredentialsBuilder and build the ServerCredentials.

Trait Implementations

impl Drop for ServerCredentialsBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.