pub struct Auth<Input>(/* private fields */);Expand description
Marks an HTTP authentication input.
Trait Implementations§
Source§impl<Compiler, Input> InterpretInputsAlg<Compiler> for Auth<Input>where
Compiler: HttpInputAlg,
impl<Compiler, Input> InterpretInputsAlg<Compiler> for Auth<Input>where
Compiler: HttpInputAlg,
Source§type Inputs = <Compiler as HttpInputAlg>::Auth<Input>
type Inputs = <Compiler as HttpInputAlg>::Auth<Input>
The extractor product understood by
Compiler.Auto Trait Implementations§
impl<Input> Freeze for Auth<Input>
impl<Input> RefUnwindSafe for Auth<Input>where
Input: RefUnwindSafe,
impl<Input> Send for Auth<Input>where
Input: Send,
impl<Input> Sync for Auth<Input>where
Input: Sync,
impl<Input> Unpin for Auth<Input>where
Input: Unpin,
impl<Input> UnsafeUnpin for Auth<Input>
impl<Input> UnwindSafe for Auth<Input>where
Input: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<This> HttpProgramExt<This> for This
impl<This> HttpProgramExt<This> for This
Source§fn compile_http<Program>(
&self,
program: Program,
) -> <Program as HttpProgramAlg<This>>::Routewhere
Program: HttpProgramAlg<This>,
fn compile_http<Program>(
&self,
program: Program,
) -> <Program as HttpProgramAlg<This>>::Routewhere
Program: HttpProgramAlg<This>,
Compiles a named HTTP program with this interpreter.