[][src]Struct swagger::context::ContextWrapper

pub struct ContextWrapper<T, C> { /* fields omitted */ }

Context wrapper, to bind an API with a context.

Methods

impl<T, C> ContextWrapper<T, C>[src]

pub fn new(api: T, context: C) -> Self[src]

Create a new ContextWrapper, binding the API and context.

pub fn api(&self) -> &T[src]

Borrows the API.

pub fn context(&self) -> &C[src]

Borrows the context.

Trait Implementations

impl<T: Clone, C: Clone> Clone for ContextWrapper<T, C>[src]

impl<T: Debug, C: Debug> Debug for ContextWrapper<T, C>[src]

Auto Trait Implementations

impl<T, C> RefUnwindSafe for ContextWrapper<T, C> where
    C: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, C> Send for ContextWrapper<T, C> where
    C: Send,
    T: Send

impl<T, C> Sync for ContextWrapper<T, C> where
    C: Sync,
    T: Sync

impl<T, C> Unpin for ContextWrapper<T, C> where
    C: Unpin,
    T: Unpin

impl<T, C> UnwindSafe for ContextWrapper<T, C> where
    C: UnwindSafe,
    T: UnwindSafe

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,