[][src]Struct swagger::context::ContextBuilder

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

Wrapper type for building up contexts recursively, adding one item to the context at a time.

Trait Implementations

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

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

impl<T: Default, C: Default> Default for ContextBuilder<T, C>[src]

impl<T: Eq, C: Eq> Eq for ContextBuilder<T, C>[src]

impl<C> Has<Option<AuthData>> for ContextBuilder<Option<AuthData>, C>[src]

impl<C: Has<Option<AuthData>>> Has<Option<AuthData>> for ContextBuilder<XSpanIdString, C>[src]

impl<C: Has<Option<AuthData>>> Has<Option<AuthData>> for ContextBuilder<Option<Authorization>, C>[src]

impl<C> Has<Option<Authorization>> for ContextBuilder<Option<Authorization>, C>[src]

impl<C: Has<Option<Authorization>>> Has<Option<Authorization>> for ContextBuilder<XSpanIdString, C>[src]

impl<C: Has<Option<Authorization>>> Has<Option<Authorization>> for ContextBuilder<Option<AuthData>, C>[src]

impl<C> Has<XSpanIdString> for ContextBuilder<XSpanIdString, C>[src]

impl<C: Has<XSpanIdString>> Has<XSpanIdString> for ContextBuilder<Option<AuthData>, C>[src]

impl<C: Has<XSpanIdString>> Has<XSpanIdString> for ContextBuilder<Option<Authorization>, C>[src]

impl<T: PartialEq, C: PartialEq> PartialEq<ContextBuilder<T, C>> for ContextBuilder<T, C>[src]

impl<C> Pop<Option<AuthData>> for ContextBuilder<Option<AuthData>, C>[src]

type Result = C

The type that remains after the value has been popped.

impl<C> Pop<Option<AuthData>> for ContextBuilder<XSpanIdString, C> where
    C: Pop<Option<AuthData>>, 
[src]

type Result = ContextBuilder<XSpanIdString, C::Result>

The type that remains after the value has been popped.

impl<C> Pop<Option<AuthData>> for ContextBuilder<Option<Authorization>, C> where
    C: Pop<Option<AuthData>>, 
[src]

type Result = ContextBuilder<Option<Authorization>, C::Result>

The type that remains after the value has been popped.

impl<C> Pop<Option<Authorization>> for ContextBuilder<Option<Authorization>, C>[src]

type Result = C

The type that remains after the value has been popped.

impl<C> Pop<Option<Authorization>> for ContextBuilder<XSpanIdString, C> where
    C: Pop<Option<Authorization>>, 
[src]

type Result = ContextBuilder<XSpanIdString, C::Result>

The type that remains after the value has been popped.

impl<C> Pop<Option<Authorization>> for ContextBuilder<Option<AuthData>, C> where
    C: Pop<Option<Authorization>>, 
[src]

type Result = ContextBuilder<Option<AuthData>, C::Result>

The type that remains after the value has been popped.

impl<C> Pop<XSpanIdString> for ContextBuilder<XSpanIdString, C>[src]

type Result = C

The type that remains after the value has been popped.

impl<C> Pop<XSpanIdString> for ContextBuilder<Option<AuthData>, C> where
    C: Pop<XSpanIdString>, 
[src]

type Result = ContextBuilder<Option<AuthData>, C::Result>

The type that remains after the value has been popped.

impl<C> Pop<XSpanIdString> for ContextBuilder<Option<Authorization>, C> where
    C: Pop<XSpanIdString>, 
[src]

type Result = ContextBuilder<Option<Authorization>, C::Result>

The type that remains after the value has been popped.

impl<C, T> Push<Option<AuthData>> for ContextBuilder<T, C>[src]

type Result = ContextBuilder<Option<AuthData>, Self>

The type that results from adding an item.

impl<C, T> Push<Option<Authorization>> for ContextBuilder<T, C>[src]

type Result = ContextBuilder<Option<Authorization>, Self>

The type that results from adding an item.

impl<C, T> Push<XSpanIdString> for ContextBuilder<T, C>[src]

type Result = ContextBuilder<XSpanIdString, Self>

The type that results from adding an item.

impl<T, C> StructuralEq for ContextBuilder<T, C>[src]

impl<T, C> StructuralPartialEq for ContextBuilder<T, C>[src]

Auto Trait Implementations

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

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

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

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

impl<T, C> UnwindSafe for ContextBuilder<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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> RcBound for T where
    T: Push<Option<Authorization>> + Send + 'static, 
[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.