Struct grpcio::Server[][src]

pub struct Server { /* fields omitted */ }
Expand description

A gRPC server.

A single server can serve arbitrary number of services and can listen on more than one port.

Use ServerBuilder to build a Server.

Implementations

impl Server[src]

pub fn shutdown(&mut self) -> ShutdownFuture

Notable traits for ShutdownFuture

impl Future for ShutdownFuture type Output = Result<()>;
[src]

Shutdown the server asynchronously.

pub fn cancel_all_calls(&mut self)[src]

Cancel all in-progress calls.

Only usable after shutdown.

pub fn start(&mut self)[src]

Start the server.

pub fn bind_addrs(&self) -> impl ExactSizeIterator<Item = (&String, u16)>[src]

Get binded addresses pairs.

pub unsafe fn add_insecure_channel_from_fd(&self, fd: c_int)[src]

Add an rpc channel for an established connection represented as a file descriptor. Takes ownership of the file descriptor, closing it when channel is closed.

Safety

The file descriptor must correspond to a connected stream socket. After this call, the socket must not be accessed (read / written / closed) by other code.

Trait Implementations

impl Debug for Server[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Drop for Server[src]

fn drop(&mut self)[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl !RefUnwindSafe for Server

impl Send for Server

impl !Sync for Server

impl Unpin for Server

impl !UnwindSafe for Server

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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.

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

Performs the conversion.

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.

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

Performs the conversion.