[][src]Struct grpcio::ServerBuilder

pub struct ServerBuilder { /* fields omitted */ }

Server factory in order to configure the properties.

Implementations

impl ServerBuilder[src]

pub fn bind_with_cred<S: Into<String>>(
    self,
    host: S,
    port: u16,
    c: ServerCredentials
) -> ServerBuilder
[src]

Bind to an address with credentials for secure connection.

This function can be called multiple times to bind to multiple ports.

pub fn bind_with_fetcher<S: Into<String>>(
    self,
    host: S,
    port: u16,
    fetcher: Box<dyn ServerCredentialsFetcher + Send + Sync>,
    cer_request_type: CertificateRequestType
) -> ServerBuilder
[src]

Bind to an address for secure connection.

The required credentials will be fetched using provided fetcher. This function can be called multiple times to bind to multiple ports.

impl ServerBuilder[src]

pub fn new(env: Arc<Environment>) -> ServerBuilder[src]

Initialize a new ServerBuilder.

pub fn bind<S: Into<String>>(self, host: S, port: u16) -> ServerBuilder[src]

Bind to an address.

This function can be called multiple times to bind to multiple ports.

pub fn channel_args(self, args: ChannelArgs) -> ServerBuilder[src]

Add additional configuration for each incoming channel.

pub fn requests_slot_per_cq(self, slots: usize) -> ServerBuilder[src]

Set how many requests a completion queue can handle.

pub fn register_service(self, service: Service) -> ServerBuilder[src]

Register a service.

pub fn build(self) -> Result<Server>[src]

Finalize the ServerBuilder and build the Server.

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.