[][src]Struct sozu_lib::http::Listener

pub struct Listener {
    pub address: SocketAddr,
    pub token: Token,
    pub active: bool,
    // some fields omitted
}

Fields

address: SocketAddrtoken: Tokenactive: bool

Implementations

impl Listener[src]

pub fn new(config: HttpListener, token: Token) -> Listener[src]

pub fn activate(
    &mut self,
    event_loop: &mut Poll,
    tcp_listener: Option<TcpListener>
) -> Option<Token>
[src]

pub fn add_http_front(&mut self, http_front: HttpFront) -> Result<(), String>[src]

pub fn remove_http_front(&mut self, front: HttpFront) -> Result<(), String>[src]

pub fn frontend_from_request(&self, host: &str, uri: &str) -> Option<&HttpFront>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Listener

impl !Send for Listener

impl !Sync for Listener

impl Unpin for Listener

impl !UnwindSafe for Listener

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> Same<T> for T

type Output = T

Should always be Self

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>,