[][src]Struct hyperlocal::SocketIncoming

pub struct SocketIncoming { /* fields omitted */ }

A stream of connections from binding to a socket.

Implementations

impl SocketIncoming[src]

pub fn bind(path: impl AsRef<Path>) -> Result<Self, Error>[src]

Creates a new SocketIncoming binding to provided socket path.

pub fn from_listener(listener: UnixListener) -> Self[src]

Creates a new SocketIncoming from Tokio's UnixListener

let socket = SocketIncoming::from_listener(unix_listener);
let server = Server::builder(socket).serve(service);

Trait Implementations

impl Accept for SocketIncoming[src]

type Conn = UnixStream

The connection type that can be accepted.

type Error = Error

The error type that can occur when accepting a connection.

impl Debug for SocketIncoming[src]

impl From<UnixListener> for SocketIncoming[src]

impl<'pin> Unpin for SocketIncoming where
    __SocketIncoming<'pin>: Unpin
[src]

Auto Trait Implementations

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> Instrument 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.