[][src]Struct grpcio::ChannelCredentialsBuilder

pub struct ChannelCredentialsBuilder { /* fields omitted */ }

ChannelCredentials factory in order to configure the properties.

Methods

impl ChannelCredentialsBuilder[src]

pub fn new() -> ChannelCredentialsBuilder[src]

Initialize a new ChannelCredentialsBuilder.

pub fn root_cert(self, cert: Vec<u8>) -> ChannelCredentialsBuilder[src]

Set the PEM encoded server root certificate to verify server's identity.

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

Set the PEM encoded client side certificate and key.

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

Finalize the ChannelCredentialsBuilder and build the ChannelCredentials.

Trait Implementations

impl Drop for ChannelCredentialsBuilder[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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