[][src]Struct fbthrift::processor::NullServiceProcessor

pub struct NullServiceProcessor<P, R> { /* fields omitted */ }

Null processor which implements no methods - it acts as the super for any service which has no super-service.

Implementations

impl<P, R> NullServiceProcessor<P, R>[src]

pub fn new() -> Self[src]

Trait Implementations

impl<P: Clone, R: Clone> Clone for NullServiceProcessor<P, R>[src]

impl<P: Debug, R: Debug> Debug for NullServiceProcessor<P, R>[src]

impl<P, R> Default for NullServiceProcessor<P, R>[src]

impl<P, R> ServiceProcessor<P> for NullServiceProcessor<P, R> where
    P: Protocol + Sync,
    P::Deserializer: Send,
    R: Sync
[src]

type RequestContext = R

impl<P, R> ThriftService<<P as Protocol>::Frame> for NullServiceProcessor<P, R> where
    P: Protocol + Send + Sync + 'static,
    P::Frame: Send + 'static,
    R: Send + Sync + 'static, 
[src]

type Handler = ()

type RequestContext = R

Auto Trait Implementations

impl<P, R> RefUnwindSafe for NullServiceProcessor<P, R> where
    P: RefUnwindSafe,
    R: RefUnwindSafe
[src]

impl<P, R> Send for NullServiceProcessor<P, R> where
    P: Send,
    R: Send
[src]

impl<P, R> Sync for NullServiceProcessor<P, R> where
    P: Sync,
    R: Sync
[src]

impl<P, R> Unpin for NullServiceProcessor<P, R> where
    P: Unpin,
    R: Unpin
[src]

impl<P, R> UnwindSafe for NullServiceProcessor<P, R> where
    P: UnwindSafe,
    R: 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> 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.