[][src]Struct tapir_cwtch::connections::service::Service

pub struct Service<ListenService> { /* fields omitted */ }

Implementations

impl<ListenService> Service<ListenService>[src]

pub fn connect<F>(
    &mut self,
    hostname: &str,
    application: F
) -> Result<(), ServiceError> where
    F: FnOnce(Connection<OutboundConnection>) + Send + Clone + 'static, 
[src]

impl Service<NoListenService>[src]

pub fn init(
    identity: Arc<Identity>,
    socks_port: u16
) -> Service<NoListenService>
[src]

pub fn listen<F>(
    self,
    port: u16,
    application: F
) -> Result<Service<JoinHandle<ServiceError>>, ServiceError> where
    F: FnOnce(Connection<InboundConnection>) + Send + Clone + 'static, 
[src]

impl Service<JoinHandle<ServiceError>>[src]

pub fn close(self)[src]

Auto Trait Implementations

impl<ListenService> RefUnwindSafe for Service<ListenService> where
    ListenService: RefUnwindSafe
[src]

impl<ListenService> Send for Service<ListenService> where
    ListenService: Send
[src]

impl<ListenService> Sync for Service<ListenService> where
    ListenService: Sync
[src]

impl<ListenService> Unpin for Service<ListenService> where
    ListenService: Unpin
[src]

impl<ListenService> UnwindSafe for Service<ListenService> where
    ListenService: UnwindSafe
[src]

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