[][src]Struct interledger_service::ServiceFn

pub struct ServiceFn<F, A> { /* fields omitted */ }

A service created by incoming_service_fn or outgoing_service_fn

Trait Implementations

impl<F, A, B> IncomingService<A> for ServiceFn<F, A> where
    A: Account,
    B: IntoFuture<Item = Fulfill, Error = Reject>,
    <B as IntoFuture>::Future: Send + 'static,
    F: FnMut(IncomingRequest<A>) -> B, 
[src]

type Future = BoxedIlpFuture

impl<F, A, B> OutgoingService<A> for ServiceFn<F, A> where
    A: Account,
    B: IntoFuture<Item = Fulfill, Error = Reject>,
    <B as IntoFuture>::Future: Send + 'static,
    F: FnMut(OutgoingRequest<A>) -> B, 
[src]

type Future = BoxedIlpFuture

impl<F: Clone, A: Clone> Clone for ServiceFn<F, A>[src]

Auto Trait Implementations

impl<F, A> Send for ServiceFn<F, A> where
    A: Send,
    F: Send

impl<F, A> Sync for ServiceFn<F, A> where
    A: Sync,
    F: Sync

impl<F, A> Unpin for ServiceFn<F, A> where
    A: Unpin,
    F: Unpin

impl<F, A> UnwindSafe for ServiceFn<F, A> where
    A: UnwindSafe,
    F: UnwindSafe

impl<F, A> RefUnwindSafe for ServiceFn<F, A> where
    A: RefUnwindSafe,
    F: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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