[][src]Struct tokio_modbus::server::tcp::Server

pub struct Server { /* fields omitted */ }

Methods

impl Server[src]

pub fn new(socket_addr: SocketAddr) -> Self[src]

Set the address for the server (mandatory).

pub fn threads(self, threads: usize) -> Self[src]

Set the number of threads running simultaneous event loops (optional, Unix only).

pub fn serve<S>(self, service: S) where
    S: NewService + Send + Sync + 'static,
    S::Request: From<Request>,
    S::Response: Into<Response>,
    S::Error: Into<Error>,
    S::Instance: Send + Sync + 'static, 
[src]

Start a Modbus TCP server that blocks the current thread.

Trait Implementations

impl Clone for Server[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Server> for Server[src]

impl Eq for Server[src]

impl Debug for Server[src]

Auto Trait Implementations

impl Send for Server

impl Sync for Server

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Erased for T