[][src]Struct brpc_rs::Server

pub struct Server { /* fields omitted */ }

A Server provides a BRPC server where multiple BRPC services can run.

Methods

impl Server[src]

pub fn new() -> Self[src]

Create a new Server

pub fn add_service<T: Service + Sized>(
    &mut self,
    service: &T,
    ownership: ServiceOwnership
) -> BrpcResult<()>
[src]

Add a Service. ownership represents server's ownership of services. If ownership is SERVER_OWNS_SERVICE, server deletes the service at destruction. To prevent the deletion, set ownership to SERVER_DOESNT_OWN_SERVICE.

pub fn start(&mut self, port: u16, opt: &ServerOptions) -> BrpcResult<()>[src]

Config a Server with the provided TCP port and ServerOptions.

pub fn run(&mut self)[src]

Run a Server until asked to quit (e.g CTRL-C).

Trait Implementations

impl Default for Server[src]

impl Drop for Server[src]

Auto Trait Implementations

impl !Send for Server

impl !Sync for Server

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]