[−][src]Struct grpcio::ServerCredentialsBuilder
[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,
force_client_auth: bool
) -> ServerCredentialsBuilder
[src]
self,
cert: S,
force_client_auth: bool
) -> ServerCredentialsBuilder
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]
self,
cert: Vec<u8>,
private_key: Vec<u8>
) -> ServerCredentialsBuilder
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
impl !Send for ServerCredentialsBuilder
impl !Sync for ServerCredentialsBuilder
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,