[][src]Struct samotop::server::Server

pub struct Server<'a> { /* fields omitted */ }

Server takes care of accepting TCP connections and passing them to TcpService to handle().

Implementations

impl<'a> Server<'a>[src]

pub fn new() -> Self[src]

pub fn on<N>(ports: N) -> Self where
    N: ToSocketAddrs + 'a,
    N::Iter: Send
[src]

pub fn on_all<I, N>(ports: I) -> Self where
    I: IntoIterator<Item = N>,
    N: ToSocketAddrs + 'a,
    N::Iter: Send
[src]

pub fn and_all<I, N>(self, ports: I) -> Self where
    I: IntoIterator<Item = N>,
    N: ToSocketAddrs + 'a,
    N::Iter: Send
[src]

pub fn and<N>(self, ports: N) -> Self where
    N: ToSocketAddrs + 'a,
    N::Iter: Send
[src]

pub async fn resolve_ports<'_>(&'_ mut self) -> Result<Vec<SocketAddr>>[src]

pub async fn serve<S>(__arg0: Server<'a>, service: S) -> Result<()> where
    S: TcpService<TcpStream>, 
[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Server<'a>

impl<'a> Send for Server<'a>

impl<'a> !Sync for Server<'a>

impl<'a> Unpin for Server<'a>

impl<'a> !UnwindSafe for Server<'a>

Blanket Implementations

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,