ServerBuilder

Struct ServerBuilder 

Source
pub struct ServerBuilder<A: TlsAcceptor = TlsAcceptor> {
    pub http: ServerBuilder<A>,
    /* private fields */
}
Expand description

Builder for gRPC server.

Fields§

§http: ServerBuilder<A>

HTTP/2 server builder.

Implementations§

Source§

impl ServerBuilder<TlsAcceptor>

Source

pub fn new_plain() -> ServerBuilder

New builder for no-TLS HTTP/2.

Source§

impl<A: TlsAcceptor> ServerBuilder<A>

Source

pub fn new() -> ServerBuilder<A>

New builder for given TLS acceptor.

Source

pub fn new_unix() -> ServerBuilder<A>

New builder for unix socket HTTP/2 server.

Source

pub fn add_service(&mut self, def: ServerServiceDefinition)

Register service for this server.

Service definition is typically in generated code.

Source

pub fn build(self) -> Result<Server>

Build server.

Auto Trait Implementations§

§

impl<A> Freeze for ServerBuilder<A>

§

impl<A = TlsAcceptor> !RefUnwindSafe for ServerBuilder<A>

§

impl<A> Send for ServerBuilder<A>

§

impl<A> Sync for ServerBuilder<A>

§

impl<A> Unpin for ServerBuilder<A>

§

impl<A = TlsAcceptor> !UnwindSafe for ServerBuilder<A>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.