Struct grpcio::Server [−][src]
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]
Notable traits for ShutdownFuture
impl Future for ShutdownFuture type Output = Result<()>;
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
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
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.
pub 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>,