JoinArgs

Struct JoinArgs 

Source
pub struct JoinArgs<Args>(pub PhantomData<Args>);

Tuple Fields§

§0: PhantomData<Args>

Trait Implementations§

Source§

impl<Args> DelegateComponent<JoinArgs<Args>> for Components

Source§

impl<Args> DelegateComponent<JoinArgs<Args>> for Components

Source§

impl<Context, Arg, Args> StringArgExtractor<Context, JoinArgs<π<Arg, Args>>> for JoinStringArgs
where Context: CanExtractStringArg<Arg>, Self: StringArgExtractor<Context, JoinArgs<Args>>,

Source§

fn extract_string_arg( context: &Context, _phantom: PhantomData<JoinArgs<Cons<Arg, Args>>>, ) -> Cow<'_, str>

Source§

impl<Context> StringArgExtractor<Context, JoinArgs<ε>> for JoinStringArgs

Source§

fn extract_string_arg( _context: &Context, _phantom: PhantomData<JoinArgs<Nil>>, ) -> Cow<'_, str>

Source§

impl<Args, __Context__, __Params__> IsProviderFor<JoinArgs<Args>, __Context__, __Params__> for Components
where JoinStringArgs: IsProviderFor<JoinArgs<Args>, __Context__, __Params__>,

Source§

impl<Args, __Context__, __Params__> IsProviderFor<JoinArgs<Args>, __Context__, __Params__> for Components
where ExtractStringUrlArg: IsProviderFor<JoinArgs<Args>, __Context__, __Params__>,

Source§

impl<Context, Arg, Args> IsProviderFor<StringArgExtractorComponent, Context, JoinArgs<π<Arg, Args>>> for JoinStringArgs
where Context: CanExtractStringArg<Arg>, Self: IsProviderFor<StringArgExtractorComponent, Context, JoinArgs<Args>> + StringArgExtractor<Context, JoinArgs<Args>>,

Source§

impl<Context> IsProviderFor<StringArgExtractorComponent, Context, JoinArgs<ε>> for JoinStringArgs

Auto Trait Implementations§

§

impl<Args> Freeze for JoinArgs<Args>

§

impl<Args> RefUnwindSafe for JoinArgs<Args>
where Args: RefUnwindSafe,

§

impl<Args> Send for JoinArgs<Args>
where Args: Send,

§

impl<Args> Sync for JoinArgs<Args>
where Args: Sync,

§

impl<Args> Unpin for JoinArgs<Args>
where Args: Unpin,

§

impl<Args> UnwindSafe for JoinArgs<Args>
where Args: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<A> Async for A
where A: Send + Sync,