pub struct Routes<'a, Alg>where
Alg: RouteAlg,{ /* private fields */ }Expand description
Carries a fluent route composition over an interpreter.
Implementations§
Auto Trait Implementations§
impl<'a, Alg> Freeze for Routes<'a, Alg>
impl<'a, Alg> RefUnwindSafe for Routes<'a, Alg>
impl<'a, Alg> Send for Routes<'a, Alg>
impl<'a, Alg> Sync for Routes<'a, Alg>
impl<'a, Alg> Unpin for Routes<'a, Alg>
impl<'a, Alg> UnsafeUnpin for Routes<'a, Alg>
impl<'a, Alg> UnwindSafe for Routes<'a, Alg>
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.